Home
last modified time | relevance | path

Searched refs:capture_output (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Lib/test/test_json/
Dtest_tool.py90 process = subprocess.run(args, input=self.data, capture_output=True, text=True, check=True)
145 …process = subprocess.run(args, input=self.jsonlines_raw, capture_output=True, text=True, check=Tru…
172 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
180 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
188 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
196 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
/third_party/mindspore/mindspore/run_check/
D_check_version.py85 … timeout=3, text=True, capture_output=True, check=False, shell=True)
104 capture_output=True, check=False, shell=True)
117 capture_output=True, check=False, shell=True)
170 … timeout=10, text=True, capture_output=True, check=False, shell=True)
291 … process = subprocess.run(call_cmd, timeout=3, text=True, capture_output=True, check=False)
/third_party/python/Lib/test/support/
Dtestresult.py151 def get_test_runner(stream, verbosity, capture_output=False): argument
152 return get_test_runner_class(verbosity, capture_output)(stream)
D__init__.py982 capture_output=(junit_xml_list is not None))
/third_party/flutter/flutter/packages/flutter/test/foundation/
Dprint_test.dart9 import 'capture_output.dart';
Dassertions_test.dart8 import 'capture_output.dart';
/third_party/python/Lib/test/test_tools/
Dtest_pathfix.py39 capture_output=True)
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/
Dradeonsi-run-tests.py174 capture_output="True",
203 capture_output="True",
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
Dlookup_dep.py153 list_java_targets_command, cwd=_SRC_DIR, capture_output=True, text=True, check=True)
/third_party/mindspore/mindspore/_extends/parallel_compile/tbe_compiler/
Dtbe_process.py117 … timeout=COMPILE_TIME_OUT_SECONDS, text=True, capture_output=True, check=True)
/third_party/python/Lib/test/
Dtest_py_compile.py240 capture_output=True)
Dtest_subprocess.py1657 capture_output=True)
1669 capture_output=True, stdout=tf)
1681 capture_output=True, stderr=tf)
1695 capture_output=True) # New session unspecified.
Dtest_sys.py983 proc = subprocess.run(args, check=True, capture_output=True, text=True)
/third_party/python/Doc/library/
Dsubprocess.rst41 capture_output=False, shell=False, cwd=None, timeout=None, \
53 *check*, and *capture_output* are not.)
55 If *capture_output* is true, stdout and stderr will be captured.
58 not be supplied at the same time as *capture_output*. If you wish to capture
60 instead of *capture_output*.
99 >>> subprocess.run(["ls", "-l", "/dev/null"], capture_output=True)
112 Added the *capture_output* parameter.
/third_party/python/Lib/
Dsubprocess.py461 input=None, capture_output=False, timeout=None, check=False, **kwargs): argument
494 if capture_output:
/third_party/python/Misc/NEWS.d/
D3.7.0b1.rst454 New argument ``capture_output`` for subprocess.run
D3.9.0a1.rst3120 conflicting `input` and `stdin` or `capture_output` and `stdout` or `stderr`
/third_party/python/Doc/whatsnew/
D3.7.rst1395 The :func:`subprocess.run` function accepts the new *capture_output*