From: Daniel Stenberg Date: Mon, 1 Jan 2024 21:48:09 +0000 (+0100) Subject: runtests: for mode="text" on , fix newlines on both parts X-Git-Tag: curl-8_6_0~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8620b11c3a6a38e18850fdfed3024fb8912d8bee;p=thirdparty%2Fcurl.git runtests: for mode="text" on , fix newlines on both parts Closes #12612 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 9dbe4e2d68..17b0d3986c 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1235,6 +1235,8 @@ sub singletest_check { # text mode when running on windows: fix line endings s/\r\n/\n/g for @validstdout; s/\n/\r\n/g for @validstdout; + s/\r\n/\n/g for @actual; + s/\n/\r\n/g for @actual; } if($hash{'nonewline'}) {