Lines Matching refs:tests
36 # Scan matching tests and return a test manifest.
40 if rc != 0: util.abort("Failed to list all tests. Output of " + cmd + ":\n" + output)
42 tests = output.split()
44 tests = list(filter(re.compile(f).search, tests))
46 return tests
101 tests = GetTests(test_runner_command, filters)
102 n_tests_total = len(tests)
103 tests, skipped = FilterKnownTestFailures(tests, under_valgrind = under_valgrind)
108 if len(tests) == 0:
109 printer.Print('No tests to run.')
116 for test in tests: