Searched refs:getstatusoutput (Results 1 - 11 of 11) sorted by relevance
/third_party/vixl/tools/ |
H A D | util.py | 49 def getstatusoutput(command): function 50 return subprocess.getstatusoutput(command) 54 retcode, unused_output = getstatusoutput('which %s' % command) 65 rc, out = getstatusoutput('which %s' % program_name)
|
H A D | generate_test_trace_a64_reference.py | 56 status, output = util.getstatusoutput(args.runner + ' --list') 68 status, output = util.getstatusoutput(cmd) 75 # `getstatusoutput` removes the trailing newline. Put it back, but only if
|
H A D | generate_simulator_traces.py | 142 status, test_list = util.getstatusoutput(args.runner + ' --list') 169 status, output = util.getstatusoutput(cmd) 219 status, output = util.getstatusoutput(cmd)
|
H A D | known_test_failures.py | 32 rc, output = util.getstatusoutput('valgrind --version')
|
H A D | clang_tidy.py | 82 rc, p_out = util.getstatusoutput(cmd)
|
H A D | test_runner.py | 39 rc, output = util.getstatusoutput(cmd)
|
H A D | clang_format.py | 79 rc, version = util.getstatusoutput(cmd)
|
H A D | lint.py | 191 retcode, unused_output = util.getstatusoutput('which cpplint.py')
|
/third_party/libsnd/programs/ |
H A D | test-sndfile-metadata-set.py | 58 status, output = commands.getstatusoutput (cmd)
|
/third_party/python/Lib/ |
H A D | subprocess.py | 39 getstatusoutput(...): Runs a command in the shell, waits for it to complete, 63 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", 649 def getstatusoutput(cmd, *, encoding=None, errors=None): function 661 >>> subprocess.getstatusoutput('ls /bin/ls') 663 >>> subprocess.getstatusoutput('cat /bin/junk') 665 >>> subprocess.getstatusoutput('/bin/junk') 667 >>> subprocess.getstatusoutput('/bin/kill $$') 684 Like getstatusoutput(), except the exit status is ignored and the return 691 return getstatusoutput(cmd, encoding=encoding, errors=errors)[1]
|
/third_party/python/Lib/test/ |
H A D | test_subprocess.py | 3654 self.assertEqual(subprocess.getstatusoutput('echo xyzzy'), 3664 status, output = subprocess.getstatusoutput(
|
Completed in 11 milliseconds