Lines Matching refs:tests
6 Convenience wrapper for compiling V8 with gn/ninja and running tests.
55 # Build targets that get built when you don't specify any (and specified tests
58 # Tests that run-tests.py would run by default that can be run with
67 "tests": [],
70 "tests": {
72 "tests": [],
77 "tests": DEFAULT_TESTS,
82 "tests": ["ALL"],
87 "tests": [],
97 - tests (build test binaries)
98 - check (build test binaries, run most tests)
99 - checkall (build all binaries, run more tests)
116 "wasm-api-tests": "wasm_api_tests",
118 "wasm-spec-tests": "d8",
273 tests=[],
279 self.tests = set(tests)
283 def Extend(self, targets, tests=[], clean=False):
285 self.tests.update(tests)
383 if not self.tests: return 0
384 if "ALL" in self.tests:
385 tests = ""
387 tests = " ".join(self.tests)
389 os.path.join("tools", "run-tests.py") +
391 GetPath(self.arch, self.mode), tests,
407 def PopulateConfigs(self, arches, modes, targets, tests, clean):
412 self.configs[path] = Config(a, m, targets, tests, clean,
415 self.configs[path].Extend(targets, tests)
436 tests = []
443 # tests have names like "S15.4.4.7_A4_T1", don't split these.
484 tests += impact["tests"]
491 self.PopulateConfigs(arches, modes, targets, tests, clean)