diff options
author | Emil Engler <me@emilengler.com> | 2020-04-30 20:04:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-30 23:47:53 +0200 |
commit | 44f5edd86396e040215da2f135e128f51ee93f0a (patch) | |
tree | 565a136f3d76e1a2abb69a9c475e561936e154dc /tests/runtests.pl | |
parent | 49bbc4f09b6fe2e39a4746a47bb3a78032682d65 (diff) | |
download | curl-44f5edd86396e040215da2f135e128f51ee93f0a.tar.gz |
runtests: fix typo in the existence of disabled tests checker
Closes #5316
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index e00e5433b..88e1115fe 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; } |