Skip to content
Snippets Groups Projects
Commit 327fbe0b authored by kiilerix's avatar kiilerix
Browse files

test-run-tests.t: fix wrong test case for cr handling on Windows

An incorrect and failing test case was introduced in af7c6bc48d8d.
parent 4091b032
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@
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)
......@@ -59,7 +59,7 @@
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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment