summaryrefslogtreecommitdiff
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-07-11 15:15:31 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2000-07-11 15:15:31 +0000
commitfff9e2094393dffe89720d59aba9427ca3b18d0b (patch)
tree6e91a3a2c3304f0a70b361e5a6f85bc14987e1dd /Lib/test/regrtest.py
parentb35de5b78a3c4c72048cfd2d53834ff0010593d5 (diff)
downloadcpython-git-fff9e2094393dffe89720d59aba9427ca3b18d0b.tar.gz
fix bug #42 reported by Andrew Dalke
The Compare close contains a close method that checks to see if there is any unconsumed data in the Compare instance; i.e. if the canonical output file contains more data than was produced by the current test run. This method was never called, allowing differences to go undetected. Fix is to call close after the test is run (after __import__) output/test_long and output/test_popen2 needed trivial changes output/test_select contained lots of text, but test_select.py produced no output
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 27b2b03955..dbaee75624 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -212,6 +212,8 @@ def runtest(test, generate, verbose, testdir = None):
sys.stdout = cfp
print test # Output file starts with test name
__import__(test, globals(), locals(), [])
+ if cfp and not (generate or verbose):
+ cfp.close()
finally:
sys.stdout = save_stdout
except ImportError, msg: