diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-23 09:16:32 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-23 09:16:32 (GMT) |
commit | e7d3b0cf14b61ad0cabdf62e2000dd3e66295b85 (patch) | |
tree | 072c0a6cb5c54dc116df21fce8a7de52d4af9292 /Lib/test/libregrtest | |
parent | 40b41fa5314a814d8509afc48b795d149691f5da (diff) | |
parent | 21c8c9242257c7aefe9fec6728d532f9ef0e64ad (diff) | |
download | cpython-e7d3b0cf14b61ad0cabdf62e2000dd3e66295b85.zip cpython-e7d3b0cf14b61ad0cabdf62e2000dd3e66295b85.tar.gz cpython-e7d3b0cf14b61ad0cabdf62e2000dd3e66295b85.tar.bz2 |
Merge 3.6 (issue #27829)
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r-- | Lib/test/libregrtest/runtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/runtest.py b/Lib/test/libregrtest/runtest.py index 7d5290e..6282543 100644 --- a/Lib/test/libregrtest/runtest.py +++ b/Lib/test/libregrtest/runtest.py @@ -117,7 +117,7 @@ def runtest(ns, test): sys.stdout = stream sys.stderr = stream result = runtest_inner(ns, test, display_failure=False) - if result[0] == FAILED: + if result[0] != PASSED: output = stream.getvalue() orig_stderr.write(output) orig_stderr.flush() |