##// END OF EJS Templates
py3: add alternate output on Python 3...
Gregory Szorc -
r41584:9955776e default draft
parent child Browse files
Show More
@@ -83,8 +83,10 b' Known exception should be caught, but pr'
83 [255]
83 [255]
84
84
85 $ hg --config "extensions.t=$abspath" --config 'worker.numcpus=8' \
85 $ hg --config "extensions.t=$abspath" --config 'worker.numcpus=8' \
86 > test 100000.0 abort --traceback 2>&1 | egrep '^(SystemExit|Abort)'
86 > test 100000.0 abort --traceback 2>&1 | egrep '(SystemExit|Abort)'
87 Abort: known exception
87 raise error.Abort(b'known exception')
88 mercurial.error.Abort: b'known exception' (py3 !)
89 Abort: known exception (no-py3 !)
88 SystemExit: 255
90 SystemExit: 255
89
91
90 Traceback must be printed for unknown exceptions
92 Traceback must be printed for unknown exceptions
General Comments 0
You need to be logged in to leave comments. Login now