test-run-tests.t: fix wrong test case for cr handling on Windows
authorMads Kiilerich <mads@kiilerich.com>
Thu, 18 Oct 2012 00:33:26 +0200
changeset 17799 327fbe0b84fd
parent 17798 4091b0322918
child 17800 f3c36faa7374
test-run-tests.t: fix wrong test case for cr handling on Windows An incorrect and failing test case was introduced in af7c6bc48d8d.
tests/test-run-tests.t
--- a/tests/test-run-tests.t	Wed Oct 17 18:09:00 2012 +0900
+++ b/tests/test-run-tests.t	Thu Oct 18 00:33:26 2012 +0200
@@ -55,11 +55,11 @@
 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: