Fix test_subprocess so that it works when launched from another directory than

the source dist.
This commit is contained in:
Antoine Pitrou 2009-03-29 19:30:55 +00:00
parent 0dd737b5ab
commit 5550365f4b
1 changed files with 3 additions and 2 deletions

View File

@ -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)