[Python-checkins] python/dist/src/Lib/test test_subprocess.py, 1.4,
1.5
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Wed Oct 13 05:14:42 CEST 2004
Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15311/lib/test
Modified Files:
test_subprocess.py
Log Message:
XXX about extreme expense of test_no_leaking() on Windows. I'm not sure
what this is trying to do. If it's necessary for it to create > 1000
processes, it should be controlled by a new resource and not run by
default on Windows.
Index: test_subprocess.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_subprocess.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- test_subprocess.py 12 Oct 2004 22:29:54 -0000 1.4
+++ test_subprocess.py 13 Oct 2004 03:14:40 -0000 1.5
@@ -317,6 +317,7 @@
# Interpreter without universal newline support
self.assertEqual(stdout, "line1\nline2\rline3\r\nline4\r\nline5\nline6")
+ # XXX test_no_leaking takes > a minute to run on a high-end WinXP Pro box
def test_no_leaking(self):
# Make sure we leak no resources
for i in range(1026):
More information about the Python-checkins
mailing list