##// END OF EJS Templates
hook: filter out unstable output in tests...
Siddharth Agarwal -
r28444:12fdf49f default
parent child Browse files
Show More
@@ -530,13 +530,13 b' test python hooks'
530 530 (run with --traceback for stack trace)
531 531 [255]
532 532
533 $ hg pull ../a --traceback 2>&1 | egrep -v '^( +File| [_a-zA-Z*(])'
533 The second egrep is to filter out lines like ' ^', which are slightly
534 different between Python 2.6 and Python 2.7.
535 $ hg pull ../a --traceback 2>&1 | egrep -v '^( +File| [_a-zA-Z*(])' | egrep -v '^( )+(\^)?$'
534 536 pulling from ../a
535 537 searching for changes
536 538 exception from first failed import attempt:
537 539 Traceback (most recent call last):
538
539 ^
540 540 SyntaxError: invalid syntax
541 541 exception from second failed import attempt:
542 542 Traceback (most recent call last):
General Comments 0
You need to be logged in to leave comments. Login now