Home
last modified time | relevance | path

Searched refs:tests_to_run (Results 1 – 7 of 7) sorted by relevance

/external/googletest/googletest/test/
Dgoogletest-filter-unittest.py253 def AdjustForParameterizedTests(self, tests_to_run): argument
258 return list(set(tests_to_run) - set(PARAM_TESTS))
260 return tests_to_run
262 def RunAndVerify(self, gtest_filter, tests_to_run): argument
265 tests_to_run = self.AdjustForParameterizedTests(tests_to_run)
279 self.AssertSetEqual(tests_run, tests_to_run)
290 self.AssertSetEqual(tests_run, tests_to_run)
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
310 tests_to_run = self.AdjustForParameterizedTests(tests_to_run)
327 self.AssertPartitionIsValid(tests_to_run, partition)
[all …]
/external/autotest/client/site_tests/telemetry_UnitTests/
Dtelemetry_UnitTests.py24 tests_to_run = []
26 tests_to_run.append((
30 tests_to_run.append(('/usr/local/telemetry/src/tools/perf',
33 tests_to_run)
/external/toolchain-utils/
Drun_tests_for.py259 tests_to_run = _find_forced_subdir_python_tests(modified_files,
262 tests_to_run += _autodetect_python_tests_for(f, toolchain_utils)
263 tests_to_run += _find_go_tests(modified_files)
267 tests_to_run.sort()
268 tests_to_run = _compress_list(tests_to_run)
270 success = _run_test_scripts(tests_to_run, show_all_output)
/external/pigweed/pw_unit_test/py/pw_unit_test/
Dtest_runner.py292 tests_to_run: Set[Test] = set()
296 tests_to_run.update(test_groups[name].all_test_dependencies())
302 return list(tests_to_run)
/external/libvpx/libvpx/test/
Dtools_common.sh270 local tests_to_run="${env_tests} ${tests_to_filter}"
275 for test in ${tests_to_run}; do
/external/libaom/libaom/test/
Dtools_common.sh276 local tests_to_run="${env_tests} ${tests_to_filter}"
281 for test in ${tests_to_run}; do
/external/tensorflow/tensorflow/lite/kernels/internal/
Ddepthwiseconv_quantized_test.cc87 tests_to_run(::testing::get<1>(param_tuple)), in TestParam()
108 int tests_to_run = 0; member
1141 for (int i = 0; i < param.tests_to_run; i++) { in TEST_P()