tests/run-tests.py
changeset 18680 15711d9d8b2c
parent 18616 35b4affe6fdd
child 18681 7591ed29e824
--- a/tests/run-tests.py	Wed Feb 13 12:20:10 2013 -0800
+++ b/tests/run-tests.py	Wed Feb 13 21:58:52 2013 +0100
@@ -541,6 +541,8 @@
 def globmatch(el, l):
     # The only supported special characters are * and ? plus / which also
     # matches \ on windows. Escaping of these caracters is supported.
+    if el + '\n' == l:
+        return True
     i, n = 0, len(el)
     res = ''
     while i < n: