From 8620b11c3a6a38e18850fdfed3024fb8912d8bee Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 1 Jan 2024 22:48:09 +0100 Subject: [PATCH] runtests: for mode="text" on , fix newlines on both parts Closes #12612 --- tests/runtests.pl | 2 ++ 1 file changed, 2 insertions(+) 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'}) { -- 2.47.3