tests/run-tests.py
branchstable
changeset 1215 62ff53b05730
parent 1212 2ea362720f72
child 1216 192cebcd59a0
--- a/tests/run-tests.py	Fri Feb 08 22:54:17 2013 +0100
+++ 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: