/third_party/python/Lib/test/ |
H A D | bisect_cmd.py | 60 cmd.extend(args.test_args) 81 cmd.extend(args.test_args) 105 args, test_args = parser.parse_known_args() 106 args.test_args = test_args 112 if '-w' in args.test_args or '--verbose2' in args.test_args: 123 print("Test arguments: %s" % format_shell_args(args.test_args))
|
H A D | test_resource.py | 15 def test_args(self): member in ResourceTest
|
H A D | test_regrtest.py | 666 test_args = ['--testdir=%s' % self.tmptestdir] 668 test_args.append('-arm64') # ARM 64-bit build 670 test_args.append('-arm32') # 32-bit ARM build 672 test_args.append('-x64') # 64-bit build 674 test_args.append('+d') # Release build, use python.exe 675 self.run_batch(script, *test_args, *self.tests)
|
H A D | test_enumerate.py | 227 def test_args(self): member in TestReversed
|
H A D | test_cmd_line.py | 291 test_args = [valid_utf8, invalid_utf8] 295 for arg in test_args:
|
H A D | test_typing.py | 2290 def test_args(self): member in LiteralTests
|
/third_party/node/tools/ |
H A D | test-v8.bat | 2 if "%config%"=="Debug" set test_args=%target_arch%.debug variable 3 if "%config%"=="Release" set test_args=%target_arch%.release variable 14 echo running 'python tools\dev\v8gen.py %test_args%' 15 call python tools\dev\v8gen.py %test_args% 17 echo running 'ninja -C out.gn/%test_args% %v8_build_options%' 18 call ninja -C out.gn/%test_args% %v8_build_options%
|
/third_party/node/ |
H A D | vcbuild.bat | 41 set test_args=
variable 101 if /i "%1"=="test" set test_args=%test_args% %common_test_suites%&set lint_cpp=1&set lint_js=1&set lint_md=1&goto arg-ok
variable 102 if /i "%1"=="test-ci-native" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %CI_NATIVE_SUITES% %CI_DOC%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1&set cctest_args=%cctest_args% --gtest_output=xml:cctest.junit.xml&goto arg-ok
variable 103 if /i "%1"=="test-ci-js" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %CI_JS_SUITES%&set no_cctest=1&goto arg-ok
variable 107 if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok
variable 108 if /i "%1"=="test-doc" set test_args variable 109 if /i "%1"=="test-js-native-api" set test_args=%test_args% js-native-api&set build_js_native_api_tests=1&goto arg-ok global() variable 110 if /i "%1"=="test-node-api" set test_args=%test_args% node-api&set build_node_api_tests=1&goto arg-ok global() variable 111 if /i "%1"=="test-benchmark" set test_args=%test_args% benchmark&goto arg-ok global() variable 112 if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel&goto arg-ok global() variable 113 if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok global() variable 114 if /i "%1"=="test-tick-processor" set test_args=%test_args% tick-processor&goto arg-ok global() variable 115 if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok global() variable 116 if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok global() variable 117 if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues&goto arg-ok global() variable 118 if /i "%1"=="test-async-hooks" set test_args=%test_args% async-hooks&goto arg-ok global() variable 119 if /i "%1"=="test-all" set test_args=%test_args% gc internet pummel %common_test_suites%&set lint_cpp=1&set lint_js=1&goto arg-ok global() variable 143 if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok global() variable 697 if "%config%"=="Debug" set test_args=--mode=debug %test_args% global() variable 698 if "%config%"=="Release" set test_args=--mode=release %test_args% global() variable [all...] |
/third_party/jerryscript/tools/ |
H A D | run-tests.py | 30 Options = collections.namedtuple('Options', ['name', 'build_args', 'test_args', 'skip']) 378 if job.test_args: 379 test_cmd.extend(job.test_args) 410 if job.test_args: 411 test_cmd.extend(job.test_args) 445 if job.test_args: 446 test_cmd.extend(job.test_args) 478 if job.test_args: 479 test_cmd.extend(job.test_args)
|
/third_party/node/deps/v8/infra/testing/ |
H A D | PRESUBMIT.py | 52 'test_args', 119 test_args = test.get('test_args', []) 120 if not isinstance(test_args, list): 121 errors += error_msg('If specified, test_args must be a list of arguments') 122 if not all(isinstance(x, str) for x in test_args): 123 errors += error_msg('If specified, all test_args must be strings')
|
/third_party/mbedtls/tests/scripts/ |
H A D | generate_test_code.py | 910 def write_parameters(out_data_f, test_args, func_args, unique_expressions): 917 :param test_args: Test parameters 924 for i, _ in enumerate(test_args): 926 val = test_args[i] 1013 for line_no, test_name, function_name, test_dependencies, test_args in \ 1027 if len(test_args) != len(func_args): 1031 expression_code += write_parameters(out_data_f, test_args, func_args,
|
H A D | analyze_outcomes.py | 706 test_args = KNOWN_TASKS[task]['args'] 707 test_function(main_results, outcomes, test_args)
|
H A D | audit-validity-dates.py | 356 for test_args in parse_suite_data(data_f): 357 for idx, test_arg in enumerate(test_args):
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cLayoutBindingTests.hpp | 105 static LayoutBindingParameters test_args[]; member in glcts::LayoutBindingTests
|
H A D | es31cLayoutBindingTests.cpp | 3357 LayoutBindingParameters LayoutBindingTests::test_args[] = { member in glcts::LayoutBindingTests 3382 std::vector<LayoutBindingParameters> samplers = makeVector(test_args); in init()
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_getargs.py | 551 def test_args(self): member in Tuple_TestCase
|