From 5550365f4b14520297e47043f16f0ecff9081101 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 29 Mar 2009 19:30:55 +0000 Subject: Fix test_subprocess so that it works when launched from another directory than the source dist. --- Lib/test/test_subprocess.py | 5 +++-- 1 file 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) -- cgit v0.12