changeset 17799:327fbe0b84fd

test-run-tests.t: fix wrong test case for cr handling on Windows An incorrect and failing test case was introduced in af7c6bc48d8d.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 18 Oct 2012 00:33:26 +0200
parents 4091b0322918
children f3c36faa7374
files tests/test-run-tests.t
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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: