tests/run-tests.py
changeset 12721 d4e21a9de8bc
parent 12678 61642a4679e9
child 12895 53cfde2b3cf9
--- a/tests/run-tests.py	Tue Oct 12 16:26:03 2010 -0500
+++ b/tests/run-tests.py	Sat Oct 02 22:57:25 2010 +0900
@@ -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))):