Commit 1a53c0cb authored by Andrew Svetlov's avatar Andrew Svetlov

Issue #16115: Add test for check that executable arg to Popen() takes...

Issue #16115: Add test for check that executable arg to Popen() takes precedence over args[0] arg\n                            \n                            Patch by Kushal Das
parent b28e75d9
......@@ -299,6 +299,16 @@ class ProcessTestCase(BaseTestCase):
# argument. For test runs in the build directory, see #7774.
self._assert_cwd('', "somethingyoudonthave", executable=sys.executable)
def test_executable_precedence(self):
# To the precedence of executable argument over args[0]
# For a normal installation, it should work without 'cwd'
# argument. For test runs in the build directory, see #7774.
python_dir = os.path.dirname(os.path.realpath(sys.executable))
p = subprocess.Popen(["nonexistent","-c",'import sys; sys.exit(42)'],
executable=sys.executable, cwd=python_dir)
p.wait()
self.assertEqual(p.returncode, 42)
def test_stdin_pipe(self):
# stdin redirection
p = subprocess.Popen([sys.executable, "-c",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment