• Home
  • Raw
  • Download

Lines Matching full:tests

59         help='run test262 tests')
65 default=False, help='run regression tests')
68 default=False, help='run compiler tests')
71 default=False, help='run tsc tests')
109 help='use skiplist for tests failing on aarch64 in AOT or JIT mode')
118 help='run tests listed in file')
134 help='run hotfix tests')
136 help='run hotreload tests')
138 help='run base64 tests')
398 self.tests = []
434 self.run_test, self.tests, chunksize=32)
439 result_iter = tqdm(result_iter, total=len(self.tests))
445 self.tests = results
464 for test in self.tests:
479 print("Failed tests:")
498 print("\033[37mTotal: %5d" % (len(self.tests)))
499 print("\033[92mPassed: %5d" % (len(self.tests) - len(fail_list)))
516 self.tests += list(map(lambda f: Test(f, flags), files))
621 …self.tests = list(map(lambda test: Test262Test(test, flags, get_test_id(test), test not in skiplis…
640 for test in self.tests:
661 total_tests = len(self.tests) - num_skipped
679 skiplist_es2panda = list({x.test_id + ".js" for x in self.tests
682 skiplist_runtime = list({x.test_id + ".js" for x in self.tests
703 print("\033[91mNew tests on skiplist:")
744 ts_suite_dir = path.join(self.tsc_path, 'tests/cases')
754 self.tsc_path, 'tests/baselines/reference')
775 self.tests.append(test)
791 self.tests += list(map(lambda f: CompilerTest(f, flags), files))
931 self.tests += list(map(lambda t: PatchTest(t, "hotfix"), self.tests_in_dirs))
939 self.tests += list(map(lambda t: PatchTest(t, "hotreload"), self.tests_in_dirs))
999 self.tests = []
1000 self.tests.append(Base64Test(os.path.join(self.test_directory, "inputFile"), "file"))
1001 self.tests.append(Base64Test(os.path.join(self.test_directory, "inputString"), "string"))
1053 # TODO: exit 1 when we have failed tests after all tests are fixed