]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
The stdout from tests is no longer compared against anything (not even
authorR. David Murray <rdmurray@bitdance.com>
Mon, 19 Oct 2009 16:15:22 +0000 (16:15 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Mon, 19 Oct 2009 16:15:22 +0000 (16:15 +0000)
to make sure it is empty), so eliminate the message that says running
under verbose is different from running without it.

Lib/test/regrtest.py

index 586b8da37a7d8f10dd5c958d57c9c3b2d9bd6b6d..a1c93d49f89dcfa7c49520be58a2969b413d2612 100755 (executable)
@@ -548,9 +548,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
         if not bad and not skipped and len(good) > 1:
             print("All", end=' ')
         print(count(len(good), "test"), "OK.")
-        if verbose:
-            print("CAUTION:  stdout isn't compared in verbose mode:")
-            print("a test that passes in verbose mode may fail without it.")
     if print_slow:
         test_times.sort(reverse=True)
         print("10 slowest tests:")