projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1b1b8c
)
No, the problem was actually because buildbot uses a StringIO in
author
Gustavo Niemeyer
<gustavo@niemeyer.net>
Wed, 6 Sep 2006 23:15:24 +0000
(23:15 +0000)
committer
Gustavo Niemeyer
<gustavo@niemeyer.net>
Wed, 6 Sep 2006 23:15:24 +0000
(23:15 +0000)
place of sys.stdout while running tests. Removing one more test
to make buildbot happy.
Lib/test/test_subprocess.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_subprocess.py
b/Lib/test/test_subprocess.py
index 19a31ea8f0edff3d7495c4aad2dc4975b233bcc9..64f8d40a40b34c58672f265df5ac4155ce0a70cc 100644
(file)
--- 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,