author | Christian Ebert <blacktrash@gmx.net> |
Wed, 20 Oct 2010 22:46:09 +0100 | |
changeset 845 | 42c5129e9c66 |
parent 842 | 12f6e285e4e7 (current diff) |
parent 844 | e5e1c16fe5b7 (diff) |
child 846 | d565787a8a5d |
--- a/tests/run-tests.py Thu Oct 14 22:53:17 2010 +0200 +++ b/tests/run-tests.py Wed Oct 20 22:46:09 2010 +0100 @@ -546,6 +546,8 @@ if el == l: # perfect match (fast) postout.append(" " + l) + elif el and el.decode('string-escape') == l: + postout.append(" " + el) # \-escape match elif (el and (el.endswith(" (re)\n") and rematch(el[:-6] + '\n', l) or el.endswith(" (glob)\n") and globmatch(el[:-8] + '\n', l))):