tests/run-tests.py
changeset 35381 14fd435763ee
parent 35280 8e72f9152c4d
child 35382 dfae14354660
--- a/tests/run-tests.py	Sat Dec 09 23:46:44 2017 -0500
+++ b/tests/run-tests.py	Sun Dec 10 00:00:36 2017 -0500
@@ -1610,8 +1610,10 @@
                 if l.endswith(b" (glob)\n"):
                     l = l[:-8] + b"\n"
                 return TTest.globmatch(el[:-8], l) or retry
-            if os.altsep and l.replace(b'\\', b'/') == el:
-                return b'+glob'
+            if os.altsep:
+                _l = l.replace(b'\\', b'/')
+                if el == _l or os.name == 'nt' and el[:-1] + b'\r\n' == _l:
+                    return b'+glob'
         return retry
 
     @staticmethod