Home
last modified time | relevance | path

Searched refs:unix_shell (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py6 from test.support import run_unittest, unix_shell, requires_subprocess
29 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
40 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/tests/
H A Dtest_spawn.py6 from test.support import run_unittest, unix_shell, requires_subprocess
29 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
40 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
/aosp_15_r20/external/python/setuptools/setuptools/_distutils/tests/
Dtest_spawn.py8 from .py35compat import unix_shell
29 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
40 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
Dpy35compat.py43 from test.support import unix_shell
47 unix_shell = ( variable
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_pipes.py5 from test.support import reap_children, unix_shell
15 if not (unix_shell and os.path.exists(unix_shell)):
Dtest_os.py67 from test.support import unix_shell
1000 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1007 with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen:
1011 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1017 % unix_shell) as popen:
1184 if not (unix_shell and os.path.exists(unix_shell)):
Dtest_subprocess.py2266 fobj.write("#!%s\n" % support.unix_shell)
2311 fobj.write("#!%s\n" % support.unix_shell)
/aosp_15_r20/external/python/cpython3/Lib/test/support/
D__init__.py511 unix_shell = '/system/bin/sh' if is_android else '/bin/sh' variable
513 unix_shell = None variable
/aosp_15_r20/external/python/cpython3/Lib/
Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dsubprocess.py1812 unix_shell = ('/system/bin/sh' if
1814 args = [unix_shell, "-c"] + args
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.6.0a4.rst568 Add test.support.unix_shell as the path to the default shell.
/aosp_15_r20/external/python/cpython3/Doc/library/
Dtest.rst245 .. data:: unix_shell