branch | stable |
changeset 798 | bca8ef6e70b3 |
parent 795 | 234c4314c6a4 |
child 799 | c20c12c560dd |
--- 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)