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