# HG changeset patch # User Simon Heimberg # Date 2014-02-13 23:36:44 # Node ID 8a2dfac89ad6054d1be0a5ed6866120832e3a127 # Parent 72d843e8cb6d2ee6280a7265245a610cd7d5b3cf tests: glob match has a glob character for not getting a warning on windows When / matches on / on windows, and there is no other glob character, this results in a warning. Avoid this by using an other glob character. diff --git a/tests/test-run-tests.t b/tests/test-run-tests.t --- a/tests/test-run-tests.t +++ b/tests/test-run-tests.t @@ -65,7 +65,7 @@ Windows: \r\n is handled like \n and can Combining esc with other markups - and handling lines ending with \r instead of \n: $ printf 'foo/bar\r' - foo/bar\r (no-eol) (glob) (esc) + fo?/bar\r (no-eol) (glob) (esc) #if windows $ printf 'foo\\bar\r' foo/bar\r (no-eol) (glob) (esc)