diff options
-rw-r--r-- | Lib/test/test_subprocess.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 2070495..66aebfc 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -142,8 +142,9 @@ class ProcessTestCase(unittest.TestCase): self.assertEqual(p.stderr, None) def test_executable(self): - p = subprocess.Popen(["somethingyoudonthave", - "-c", "import sys; sys.exit(47)"], + arg0 = os.path.join(os.path.dirname(sys.executable), + "somethingyoudonthave") + p = subprocess.Popen([arg0, "-c", "import sys; sys.exit(47)"], executable=sys.executable) p.wait() self.assertEqual(p.returncode, 47) |