Home
last modified time | relevance | path

Searched refs:skip_tests (Results 1 – 8 of 8) sorted by relevance

/external/autotest/utils/
Dunittest_suite.py160 skip_tests = SKIP
161 if options.skip_tests:
162 skip_tests.update(options.skip_tests.split())
163 skip_tests_full_path = {os.path.join(ROOT, t) for t in skip_tests}
187 if (file_name in skip_tests or
/external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/
Drun_interop_matrix_tests.py219 def _test_release(lang, runtime, release, image, xml_report_tree, skip_tests): argument
233 skip_jobs=skip_tests)
237 if skip_tests:
254 skip_tests = False
266 if not skip_tests:
281 skip_tests = True
284 xml_report_tree, skip_tests)
/external/webrtc/tools_webrtc/android/
Drelease_aar.py233 def ReleaseAar(use_goma, skip_tests, publish, build_dir): argument
266 tests_pass = skip_tests or _TestAAR(build_dir, user, api_key, version)
287 ReleaseAar(args.use_goma, args.skip_tests, args.publish, args.build_dir)
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dconfiguration.py76 skip_tests = None variable
Ddotest.py197 if not configuration.skip_tests:
198 configuration.skip_tests = []
199 configuration.skip_tests.append(line)
607 if configuration.skip_tests:
608 for file_regexp in configuration.skip_tests:
Dtest_result.py175 configuration.skip_tests, test.id()):
/external/grpc-grpc/src/python/grpcio_tests/
Dcommands.py157 runner.skip_tests(self.BANNED_TESTS)
/external/grpc-grpc/src/python/grpcio_tests/tests/
D_runner.py123 def skip_tests(self, tests): member in Runner