From 502b6a5a328ee516ff7a87355b5a027c40be2079 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 13 Oct 2022 17:04:46 +0200 Subject: [PATCH] test1275: remove the check of stderr To avoid the mysterious test failures on Windows, instead rely on the error code returned on failure. Fixes #9716 Closes #9723 --- tests/data/test1275 | 7 +------ tests/markdown-uppercase.pl | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/tests/data/test1275 b/tests/data/test1275 index bd8415edb4..d1cb223b8b 100644 --- a/tests/data/test1275 +++ b/tests/data/test1275 @@ -2,6 +2,7 @@ documentation +markdown @@ -21,10 +22,4 @@ Verify capital letters after period in markdown files - - -ok - - - diff --git a/tests/markdown-uppercase.pl b/tests/markdown-uppercase.pl index db6a2f8241..3aa8ac07bc 100644 --- a/tests/markdown-uppercase.pl +++ b/tests/markdown-uppercase.pl @@ -88,4 +88,4 @@ for my $f (@m) { if($errors) { exit 1; } -print STDERR "ok\n"; +print "ok\n";