##// END OF EJS Templates
tests: don't match blank output lines as regexes in unified tests...
Brodie Rao -
r12373:58885f00 default
parent child Browse files
Show More
@@ -530,7 +530,7 b' def tsttest(test, options):'
530
530
531 if el == l: # perfect match (fast)
531 if el == l: # perfect match (fast)
532 postout.append(" " + l)
532 postout.append(" " + l)
533 elif el and rematch(el, l): # fallback regex match
533 elif el and el[2:] and rematch(el, l): # fallback regex match
534 postout.append(" " + el)
534 postout.append(" " + el)
535 else: # mismatch - let diff deal with it
535 else: # mismatch - let diff deal with it
536 postout.append(" " + l)
536 postout.append(" " + l)
General Comments 0
You need to be logged in to leave comments. Login now