Lines Matching refs:tests
29 help='Only print out failing tests')
33 help='JerryScript binary to run tests with')
37 help='Add a comma separated list of patterns of the excluded JS-tests')
39 help='Add a comma separated list of patterns of the excluded JS-tests')
41 help='Directory contains tests to run')
59 tests = []
61 tests = []
63 tests.extend([os.path.join(root, test_file) for test_file in files if test_file.endswith('.js')])
69 tests.append(os.path.normpath(os.path.join(dirname, test.rstrip())))
71 tests.sort()
84 return [test for test in tests if filter_tests(test) and filter_file_tests(test)]
105 tests = get_tests(args.test_dir, args.test_list, args.skip_list, args.skip_file)
106 total = len(tests)
117 passed = run_snapshot_tests(args, tests)
119 passed = run_normal_tests(args, tests)
138 def run_normal_tests(args, tests):
144 total = len(tests)
147 for test in tests:
168 def run_snapshot_tests(args, tests):
183 total = len(tests)
186 for test in tests: