diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2006-09-06 23:15:24 +0000 |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2006-09-06 23:15:24 +0000 |
commit | d83e7994f2b247f64d28f6e99a631521099bfa8f (patch) | |
tree | 116f03bb8ee398cbc4c5ef88984c4944a7ed05ea | |
parent | d1b1b8c8827212252f69941562e7989388990a5a (diff) | |
download | cpython-git-d83e7994f2b247f64d28f6e99a631521099bfa8f.tar.gz |
No, the problem was actually because buildbot uses a StringIO in
place of sys.stdout while running tests. Removing one more test
to make buildbot happy.
-rw-r--r-- | Lib/test/test_subprocess.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 19a31ea8f0..64f8d40a40 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -240,12 +240,6 @@ class ProcessTestCase(unittest.TestCase): rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) self.assertEquals(rc, 2) - def test_stdout_fileobj_of_stdout(self): - # stdout is set to sys.stdout (#1531862). - cmd = r"import sys, os; sys.exit(os.write(sys.stdout.fileno(), '.\n'))" - rc = subprocess.call([sys.executable, "-c", cmd], stdout=sys.stdout) - self.assertEquals(rc, 2) - def test_cwd(self): tmpdir = os.getenv("TEMP", "/tmp") # We cannot use os.path.realpath to canonicalize the path, |