changeset 12373 | 58885f00b998 |
parent 12338 | b016fc1c0862 |
child 12374 | 4e7dd28db0dd |
--- a/tests/run-tests.py Wed Sep 22 16:05:58 2010 -0500 +++ b/tests/run-tests.py Wed Sep 22 16:05:59 2010 -0500 @@ -530,7 +530,7 @@ if el == l: # perfect match (fast) postout.append(" " + l) - elif el and rematch(el, l): # fallback regex match + elif el and el[2:] and rematch(el, l): # fallback regex match postout.append(" " + el) else: # mismatch - let diff deal with it postout.append(" " + l)