From: Emil Engler Date: Thu, 30 Apr 2020 18:04:50 +0000 (+0200) Subject: runtests: fix typo in the existence of disabled tests checker X-Git-Tag: curl-7_71_0~232 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44f5edd86396e040215da2f135e128f51ee93f0a;p=thirdparty%2Fcurl.git runtests: fix typo in the existence of disabled tests checker Closes #5316 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index e00e5433b0..88e1115fe8 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5481,7 +5481,7 @@ sub disabledtests { my ($n) = $1; $disabled{$n}=$n; # disable this test number if(! -f "$srcdir/data/test$n") { - print STDERR "WARNING! Non-exiting test $n in DISABLED!\n"; + print STDERR "WARNING! Non-existing test $n in DISABLED!\n"; # fail hard to make user notice exit 1; }