diff options
author | Guido van Rossum <guido@python.org> | 1996-12-20 03:03:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-20 03:03:01 (GMT) |
commit | 0a94cc788e6370ee1406e19ad53af6b0bbbc2c90 (patch) | |
tree | 30df53b0166792c2dc4a54773d4148dd0841fd17 | |
parent | 531661c1aee6a6cbf95b6819d18224c2085cf12f (diff) | |
download | cpython-0a94cc788e6370ee1406e19ad53af6b0bbbc2c90.zip cpython-0a94cc788e6370ee1406e19ad53af6b0bbbc2c90.tar.gz cpython-0a94cc788e6370ee1406e19ad53af6b0bbbc2c90.tar.bz2 |
Set test_support.verbose to 0, to signal tests only to generate
portable output.
-rw-r--r-- | Lib/test/autotest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py index 6791034..94ae9c1 100644 --- a/Lib/test/autotest.py +++ b/Lib/test/autotest.py @@ -42,6 +42,8 @@ import os import sys import getopt import traceback +import test_support +test_support.verbose = 0 from test_support import * # Exception raised when the test failed (not the same as in test_support) |