Searched refs:capture_output (Results 1 - 16 of 16) sorted by relevance
/third_party/python/Lib/test/test_json/ |
H A D | test_tool.py | 91 process = subprocess.run(args, input=self.data, capture_output=True, text=True, check=True) 146 process = subprocess.run(args, input=self.jsonlines_raw, capture_output=True, text=True, check=True) 173 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 181 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 189 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 197 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
|
/third_party/python/Lib/test/support/ |
H A D | testresult.py | 151 def get_test_runner(stream, verbosity, capture_output=False): 152 return get_test_runner_class(verbosity, capture_output)(stream)
|
H A D | __init__.py | 1093 capture_output=(junit_xml_list is not None))
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_competitive.py | 50 return sp.run(command, capture_output=True, universal_newlines=True)
|
/third_party/python/Lib/test/test_tools/ |
H A D | test_pathfix.py | 39 capture_output=True)
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 193 ["deqp-runner", "--version"], capture_output="True", check=True, env=env 225 capture_output="True", variable
|
/third_party/notofonts/scripts/ |
H A D | gather.py | 43 ls = subprocess.run(["git", "ls-files", "--others"], capture_output=True)
|
/third_party/python/Tools/freeze/test/ |
H A D | freeze.py | 28 capture_output=True,
|
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/ |
H A D | lookup_dep.py | 153 list_java_targets_command, cwd=_SRC_DIR, capture_output=True, text=True, check=True)
|
/third_party/gn/build/ |
H A D | gen.py | 238 capture_output=True)
|
/third_party/python/Lib/test/ |
H A D | test_py_compile.py | 241 capture_output=True)
|
H A D | test_subprocess.py | 1697 capture_output=True) 1702 # run() refuses to accept 'stdout' with 'capture_output' 1706 msg=("Expected ValueError when stdout and capture_output " 1709 capture_output=True, stdout=tf) 1711 self.assertIn('capture_output', c.exception.args[0]) 1714 # run() refuses to accept 'stderr' with 'capture_output' 1718 msg=("Expected ValueError when stderr and capture_output " 1721 capture_output=True, stderr=tf) 1723 self.assertIn('capture_output', c.exception.args[0]) 1735 capture_output [all...] |
H A D | test_plistlib.py | 1032 return subprocess.run(['plutil', "-lint", self.file_name], capture_output=True, text=True).stdout
|
H A D | test_sys.py | 1092 proc = subprocess.run(args, check=True, capture_output=True, text=True)
|
/third_party/vulkan-loader/scripts/ |
H A D | update_deps.py | 284 result = subprocess.run(cmd, cwd=directory, capture_output=True, text=True)
|
/third_party/python/Lib/ |
H A D | subprocess.py | 507 input=None, capture_output=False, timeout=None, check=False, **kwargs): 513 or pass capture_output=True to capture both. 541 if capture_output: 544 'with capture_output.')
|
Completed in 21 milliseconds