Home
last modified time | relevance | path

Searched refs:test_cmd (Results 1 – 12 of 12) sorted by relevance

/third_party/jerryscript/tools/
Drun-tests.py340 test_cmd = get_platform_cmd_prefix()
341 test_cmd.extend([settings.TEST_RUNNER_SCRIPT, '--engine', bin_path])
343 yield job, ret_build, test_cmd
370 test_cmd = [
379 test_cmd.extend(job.test_args)
381 ret_test |= run_check(test_cmd)
387 for job, ret_build, test_cmd in iterate_test_runner_jobs(JERRY_TESTS_OPTIONS, options):
391 test_cmd.append('--test-dir')
392 test_cmd.append(settings.JERRY_TESTS_DIR)
395 test_cmd.append("-q")
[all …]
/third_party/node/tools/
Dv8-json-to-junit.py50 def HasRunTest(self, test_name, test_cmd, test_duration, test_failure): argument
53 test_case_element.attrib["cmd"] = test_cmd
108 test_cmd=failing_test["command"],
116 test_cmd=passing_test["command"],
/third_party/jerryscript/tools/runners/
Drun-test-suite.py94 def execute_test_command(test_cmd): argument
99 process = subprocess.Popen(test_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kwargs)
139 test_cmd = get_platform_cmd_prefix()
141 test_cmd.append(args.runtime)
142 test_cmd.extend([args.engine, '--call-on-exit', '__checkAsync'])
151 (returncode, stdout) = execute_test_command(test_cmd + [test])
Drun-unittests.py59 test_cmd = [args.runtime] if args.runtime else []
68 … subprocess.check_output(test_cmd + [test], stderr=subprocess.STDOUT, universal_newlines=True)
/third_party/node/deps/v8/tools/testrunner/local/
Djunit_output.py37 def HasRunTest(self, test_name, test_cmd, test_duration, test_failure): argument
40 testCaseElement.attrib["cmd"] = test_cmd
/third_party/libabigail/tests/
Dtest-utils.cc64 const std::string& test_cmd, in emit_test_status_and_update_counters() argument
76 << test_cmd in emit_test_status_and_update_counters()
Dtest-utils.h28 const std::string& test_cmd,
/third_party/python/Lib/test/
Dtest_cmd.py223 from test import test_cmd
224 support.run_doctest(test_cmd, verbose)
/third_party/skia/third_party/externals/angle2/
DPRESUBMIT.py243 test_cmd = input_api.Command(name=cmd_name, cmd=cmd, kwargs={}, message=Msg)
246 return input_api.RunTests([test_cmd])
/third_party/ffmpeg/
Dconfigure991 test_cmd(){ function
1037 test_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
1044 test_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
1051test_cmd $objcc -Werror=missing-prototypes $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $(cc_o $TMPO…
1061 test_cmd $nvcc $nvccflags "$@" $NVCC_C $(nvcc_o $tmpo_) $tmpcu_
1081 test_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
1088 test_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
1096 test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" $(x86asm_o $TMPO) $TMPASM
1104 test_cmd $@ && enable $cmd
1144 test_cmd $cc $CPPFLAGS $CFLAGS $flags "$@" $CC_C $(cc_o $TMPO) $TMPC &&
[all …]
/third_party/e2fsprogs/
D.gitignore121 lib/ss/test_cmd.c
/third_party/node/deps/v8/tools/testrunner/testproc/
Dprogress.py393 test_cmd=result.cmd.to_string(relative=True),