# HG changeset patch # User Mads Kiilerich # Date 2012-10-17 22:33:26 # Node ID 327fbe0b84fd3203d18d6e166fbf29063d636e33 # Parent 4091b0322918743c1860441a4e95c2d96542321c test-run-tests.t: fix wrong test case for cr handling on Windows An incorrect and failing test case was introduced in af7c6bc48d8d. 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 @@ -55,11 +55,11 @@ Literal match ending in " (re)": Windows: \r\n is handled like \n and can be escaped: #if windows - $ printf 'crlf\r\ncr\r\tcrlf\r\ncrcrlf\r\r\n' + $ printf 'crlf\r\ncr\r\tcrlf\r\ncrlf\r\n' crlf cr\r (no-eol) (esc) \tcrlf (esc) - crcrlf\r (esc) + crlf\r (esc) #endif Combining esc with other markups - and handling lines ending with \r instead of \n: