• Home
  • Raw
  • Download

Lines Matching refs:test_path

200     def __init__(self, test_path, flags):  argument
201 self.path = test_path
247 def __init__(self, test_path, flags): argument
248 Test.__init__(self, test_path, flags)
377 def test_path(self, src): member in Runner
433 print(self.test_path(test.path))
470 def test_path(self, src): member in RegressionRunner
487 def test_path(self, src): member in AbcToAsmRunner
492 def __init__(self, test_path, flags, is_debug): argument
493 Test.__init__(self, test_path, flags)
581 def test_path(self, src): member in TSCRunner
604 def test_path(self, src): member in CompilerRunner
609 def __init__(self, test_path, flags): argument
610 Test.__init__(self, test_path, flags)
744 for test_path in self.test_paths:
745 self.path = test_path
775 def get_record_name(self, test_path): argument
776 … record_name = os.path.relpath(test_path, os.path.dirname(self.files_info_path)).split('.')[0]
802 def get_belonging_abc_input(self, test_path): argument
803 filename = os.path.relpath(test_path, os.path.dirname(self.files_info_path))
828 for test_path in self.test_paths:
829 record_name = self.get_record_name(test_path)
831 if (os.path.basename(test_path).startswith("commonjs")):
834 if (os.path.basename(test_path).startswith("sharedmodule")):
836 file_info = ('%s;%s;%s;%s;%s;%s\n' % (test_path, record_name, module_kind,
837 … os.path.relpath(test_path, self.projects_path), record_name,
839 belonging_abc_input = self.get_belonging_abc_input(test_path)
887 for test_path in self.test_paths:
888 self.path = test_path
955 for test_path in self.test_paths:
956 self.path = test_path
1087 def test_path(self, src): member in TransformerRunner
1103 def test_path(self, src): member in TransformerInTargetApiVersion10Runner
1108 def __init__(self, test_path, flags): argument
1109 Test.__init__(self, test_path, flags)
1137 def __init__(self, test_path, mode_arg, target_version, preserve_files): argument
1138 Test.__init__(self, test_path, "")
1249 test_path = os.path.join(test_base_path, test_dir)
1250 self.tests_in_dirs.append(test_path)
1251 … self.tests.append(PatchTest(test_path, name, target_version, self.preserve_files))
1256 def test_path(self, src): member in PatchRunner
1281 def __init__(self, test_path, mode): argument
1282 Test.__init__(self, test_path, "")
1332 def __init__(self, test_path, input_type): argument
1333 Test.__init__(self, test_path, "")
1415 def test_path(self, src): member in Base64Runner
1430 def test_path(self, src): member in BytecodeRunner
1667 def test_path(self, src): member in AopTransform