HomeSort by: relevance | last modified time | path
    Searched refs:subprocess (Results 1 - 25 of 152) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/bsd/zstd/dist/build/meson/tests/
valgrindTest.py 11 import subprocess
20 subprocess.check_call([*VALGRIND_ARGS, datagen, '-g50M'], stdout=subprocess.DEVNULL)
22 if subprocess.call([*VALGRIND_ARGS, zstd],
23 stdout=subprocess.DEVNULL) == 0:
24 raise subprocess.SubprocessError('zstd without argument should have failed')
26 with subprocess.Popen([datagen, '-g80'], stdout=subprocess.PIPE) as p1, \
27 subprocess.Popen([*VALGRIND_ARGS, zstd, '-', '-c'],
29 stdout=subprocess.DEVNULL) as p2
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/gn/build/
run_tablegen.py 4 import subprocess
8 sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:]))
  /src/external/gpl3/gcc/dist/contrib/
git-backport.py 24 import subprocess
34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True)
35 subprocess.run(fixup_script, shell=True)
git-fix-changelog.py 27 import subprocess
57 r = subprocess.run(f'{verify_script} HEAD', shell=True, encoding='utf8',
58 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
62 commit_message = subprocess.check_output(cmd, shell=True,
87 subprocess.check_output(f'git commit --amend -F {w.name}',
git-commit-mklog.py 29 import subprocess
60 subprocess.run(f'git commit {commit_args}', shell=True, env=myenv)
  /src/external/gpl3/gcc.old/dist/contrib/
git-backport.py 24 import subprocess
34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True)
35 subprocess.run(fixup_script, shell=True)
git-fix-changelog.py 27 import subprocess
57 r = subprocess.run(f'{verify_script} HEAD', shell=True, encoding='utf8',
58 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
62 commit_message = subprocess.check_output(cmd, shell=True,
87 subprocess.check_output(f'git commit --amend -F {w.name}',
git-commit-mklog.py 28 import subprocess
59 subprocess.run(f'git commit {commit_args}', shell=True, env=myenv)
  /src/external/mpl/bind/dist/bin/tests/system/dnstap/
ydump.py 20 import subprocess
27 with subprocess.Popen(ARGS, stdout=subprocess.PIPE) as f:
  /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/
features.py 13 import subprocess
47 subprocess.run([feature_test_bin, feature], check=True)
48 except subprocess.CalledProcessError as exc:
  /src/external/apache2/llvm/dist/llvm/utils/
indirect_calls.py 18 import subprocess
27 p = subprocess.Popen(args=args, stdin=None, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
extract_vplan.py 13 import subprocess
35 p = subprocess.Popen([dot, '-Tpng', '-o', filename],
37 stdin=subprocess.PIPE,
38 stdout=subprocess.PIPE,
39 stderr=subprocess.PIPE)
bisect 19 import subprocess
42 result = subprocess.call(cmd)
extract_symbols.py 22 import subprocess
27 # different tools. We use subprocess.Popen and yield a symbol at a time instead
28 # of using subprocess.check_output and returning a list as, especially on
33 process = subprocess.Popen(['dumpbin','/symbols',lib], bufsize=1,
34 stdout=subprocess.PIPE, stdin=subprocess.PIPE,
46 process = subprocess.Popen(['nm','-P','-Xany','-C','-p',lib], bufsize=1,
47 stdout=subprocess.PIPE, stdin=subprocess.PIPE,
50 process = subprocess.Popen(['nm','-P',lib], bufsize=1
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/
__init__.py 8 import subprocess
31 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
32 return subprocess.call(cmd, *args, **kwargs)
36 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
37 return subprocess.check_call(cmd, *args, **kwargs)
41 child = subprocess.Popen(analyzer_cmd + ['-v'] + build_cmd,
43 stdout=subprocess.PIPE,
44 stderr=subprocess.STDOUT
    [all...]
test_exec_anatomy.py 10 import subprocess
16 return subprocess.check_call(cmd,
18 stdout=subprocess.PIPE,
19 stderr=subprocess.STDOUT)
  /src/external/mpl/bind/dist/bin/tests/system/filters/
tests_filter_checkconf.py 14 import subprocess
31 with pytest.raises(subprocess.CalledProcessError):
  /src/external/apache2/llvm/dist/llvm/utils/gn/
gn.py 10 import subprocess
41 if subprocess.call('gn --version', stdout=open(os.devnull, 'w'),
42 stderr=subprocess.STDOUT,
64 sys.exit(subprocess.call(cmd))
  /src/external/bsd/zstd/dist/tests/
check_size.py 13 import subprocess
  /src/external/apache2/llvm/dist/clang/utils/check_cfc/
obj_diff.py 9 import subprocess
21 p = subprocess.Popen([disassembler, '-d', objfile],
22 stdout=subprocess.PIPE,
23 stderr=subprocess.PIPE)
32 p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /src/external/apache2/llvm/dist/clang/tools/clang-format/
clang-format-sublime.py 18 import subprocess
47 p = subprocess.Popen(command, stdout=subprocess.PIPE,
48 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /src/external/mpl/bind/dist/bin/tests/system/doth/
tests_gnutls.py 16 import subprocess
54 with open("gnutls-cli.err", "wb") as gnutls_cli_stderr, subprocess.Popen(
56 stdin=subprocess.PIPE,
57 stdout=subprocess.PIPE,
97 except subprocess.TimeoutExpired:
  /src/external/gpl3/gdb/dist/gdb/contrib/
test_pubnames_and_indexes.py 45 import subprocess
57 readelf = subprocess.Popen(
58 [READELF, "--debug-dump=" + readelf_option, filename], stdout=subprocess.PIPE
79 readelf = subprocess.Popen(
80 [READELF, "--debug-dump=gdb_index", filename], stdout=subprocess.PIPE
169 subprocess.check_call(
172 subprocess.check_call(
184 subprocess.check_call(
  /src/external/gpl3/gdb.old/dist/gdb/contrib/
test_pubnames_and_indexes.py 45 import subprocess
57 readelf = subprocess.Popen(
58 [READELF, "--debug-dump=" + readelf_option, filename], stdout=subprocess.PIPE
79 readelf = subprocess.Popen(
80 [READELF, "--debug-dump=gdb_index", filename], stdout=subprocess.PIPE
169 subprocess.check_call(
172 subprocess.check_call(
184 subprocess.check_call(
  /src/external/mit/libcbor/dist/doc/source/
conf.py 39 import subprocess, os
45 print subprocess.check_output('cd ../..; mkdir doc/build; doxygen', shell=True)

Completed in 37 milliseconds

1 2 3 4 5 6 7