diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-13 00:24:15 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-13 00:24:15 (GMT) |
commit | a020b54dc2bb037e90bc93dbc81f44d26f35de52 (patch) | |
tree | 4fdf2ebc5ef03f95e62242c43b0c18d6c7b1a11a /tests/test_pretty_print.py | |
parent | ed06583ecad27126861122798a661aa6ef464907 (diff) |
Don't run if TEST_GENERATE is set
Diffstat (limited to 'tests/test_pretty_print.py')
-rwxr-xr-x | tests/test_pretty_print.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_pretty_print.py b/tests/test_pretty_print.py index 85f4ec7..80a887a 100755 --- a/tests/test_pretty_print.py +++ b/tests/test_pretty_print.py @@ -489,6 +489,8 @@ builddir = os.getcwd() # os.getcwd()+'/build' verbose = False maxretry = 10 +if bool(os.getenv("TEST_GENERATE")): sys.exit(0) + failed_only = False if '--failed-only' in sys.argv: failed_only = True |