Blame pypy-1.6-fix-test-subprocess-with-nonreadable-path-dir.patch

Matej Stuchlik c3a10ad
diff -rup pypy-pypy-f66246c46ca3/lib-python/2.7/test/test_subprocess.py pypy-pypy-f66246c46ca3/lib-python/2.7/test/test_subprocess.py
Matej Stuchlik c3a10ad
--- pypy-pypy-f66246c46ca3/lib-python/2.7/test/test_subprocess.py	2013-05-27 10:35:37.762237806 +0200
Matej Stuchlik c3a10ad
+++ pypy-pypy-f66246c46ca3/lib-python/2.7/test/test_subprocess.py	2013-05-28 10:13:03.182536196 +0200
Matej Stuchlik c3a10ad
@@ -587,7 +587,7 @@ class ProcessTestCase(BaseTestCase):
1df5c3e
         for i in range(1024):
1df5c3e
             # Windows raises IOError.  Others raise OSError.
1df5c3e
             with self.assertRaises(EnvironmentError) as c:
1df5c3e
-                subprocess.Popen(['nonexisting_i_hope'],
1df5c3e
+                subprocess.Popen(['/usr/bin/nonexisting_i_hope'],
1df5c3e
                                  stdout=subprocess.PIPE,
1df5c3e
                                  stderr=subprocess.PIPE)
52a91fc
             # ignore errors that indicate the command was not found