Lines Matching refs:path
18 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
19 VNDK_DEF_TOOL = os.path.join(SCRIPT_DIR, '..', 'vndk_definition_tool.py')
21 INPUT_DIR = os.path.join(SCRIPT_DIR ,'testdata', 'test_elfdump', 'input')
22 EXPECTED_DIR = os.path.join(SCRIPT_DIR, 'testdata', 'test_elfdump', 'expected')
26 def run_elf_dump(path): argument
27 cmd = [sys.executable, VNDK_DEF_TOOL, 'elfdump', path]
53 cls.expected_dir = os.path.join(EXPECTED_DIR, target_name)
54 cls.test_dir = os.path.join(cls.test_dir_base, target_name)
59 src_file = os.path.join(INPUT_DIR, 'main.c')
60 obj_file = os.path.join(cls.test_dir, 'main.o')
64 out_file = os.path.join(cls.test_dir, 'main.out')
68 src_file = os.path.join(INPUT_DIR, 'test.c')
69 obj_file = os.path.join(cls.test_dir, 'test.o')
73 out_file = os.path.join(cls.test_dir, 'libtest.so')
77 out_file = os.path.join(cls.test_dir, 'libtest-rpath.so')
83 out_file = os.path.join(cls.test_dir, 'libtest-rpath-multi.so')
89 out_file = os.path.join(cls.test_dir, 'libtest-runpath.so')
95 out_file = os.path.join(cls.test_dir, 'libtest-runpath-multi.so')
114 expected_file_path = os.path.join(self.expected_dir, expected_file_name)
121 out_file = os.path.join(self.test_dir, 'main.out')
125 lib_file = os.path.join(self.test_dir, lib_name)