Author: Philip Jenvey <[email protected]>
Branch: stdlib-3.2.5
Changeset: r70501:455e6ff76097
Date: 2014-04-08 17:14 -0700
http://bitbucket.org/pypy/pypy/changeset/455e6ff76097/

Log:    use cpython 3.3's test which we already adhere to. 3.2.5's test
        seems bogus (cpython issue15533)

diff --git a/lib-python/3/test/test_subprocess.py 
b/lib-python/3/test/test_subprocess.py
--- a/lib-python/3/test/test_subprocess.py
+++ b/lib-python/3/test/test_subprocess.py
@@ -311,7 +311,8 @@
     def test_executable_without_cwd(self):
         # For a normal installation, it should work without 'cwd'
         # argument.  For test runs in the build directory, see #7774.
-        self._assert_cwd('', "somethingyoudonthave", executable=sys.executable)
+        self._assert_cwd(os.getcwd(), "somethingyoudonthave",
+                         executable=sys.executable)
 
     def test_stdin_pipe(self):
         # stdin redirection
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to