diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2011-03-17 15:04:34 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2011-03-17 15:04:34 (GMT) |
commit | f694a409aadf04e67d4e72a6f8e45dcbe34ab6e5 (patch) | |
tree | 6e5b6cbda7dedf6210f07ccc523a0cf43e8ac5e3 /Lib/test/test_crashers.py | |
parent | 589e8d9b127fe47fa037a65fb7bfc863d9467d4b (diff) | |
download | cpython-f694a409aadf04e67d4e72a6f8e45dcbe34ab6e5.zip cpython-f694a409aadf04e67d4e72a6f8e45dcbe34ab6e5.tar.gz cpython-f694a409aadf04e67d4e72a6f8e45dcbe34ab6e5.tar.bz2 |
Give more info in verbose mode when checking crashers, and stress the stack even more in the compiler crasher
Diffstat (limited to 'Lib/test/test_crashers.py')
-rw-r--r-- | Lib/test/test_crashers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py index ee612c2..86f88f7 100644 --- a/Lib/test/test_crashers.py +++ b/Lib/test/test_crashers.py @@ -24,6 +24,8 @@ class CrasherTest(unittest.TestCase): continue # Some "crashers" only trigger an exception rather than a # segfault. Consider that an acceptable outcome. + if test.support.verbose: + print("Checking crasher:", fname) assert_python_failure(fname) |