[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / utils / rsp_bisect_test / test_script.py
blob34cfc399fe1b4b854368ff1b7bcb0940737d00ef
1 #!/usr/bin/env python3
2 #===----------------------------------------------------------------------===##
4 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 # See https://llvm.org/LICENSE.txt for license information.
6 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 #===----------------------------------------------------------------------===##
10 import os
11 import sys
13 rsp_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "rsp")
15 with open(rsp_path) as f:
16 contents = f.read()
17 print(contents)
18 success = '../Other/./foo' in contents
20 sys.exit(0 if success else 1)