diff -r acff41957b34 -r 14fd435763ee tests/run-tests.py --- 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