diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-06-09 13:52:29 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-06-10 08:42:52 +0200 |
commit | dd47b0cce921bb777661aff8af292a879cdcc089 (patch) | |
tree | df4dd4efa1e4777b2cb6b6afb1190a06c3e36e4d /tests/runtests.pl | |
parent | 77ae8f26ad89d627f5c97cf261976c43cb590c3d (diff) | |
download | curl-dd47b0cce921bb777661aff8af292a879cdcc089.tar.gz |
runtests: also find the last test in Makefile.inc
Closes #7209
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 dd38ef4f1..139070eb2 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3556,7 +3556,7 @@ sub singletest { # timestamp test preparation start $timeprepini{$testnum} = Time::HiRes::time(); - if($disttests !~ /test$testnum\W/ ) { + if($disttests !~ /test$testnum(\W|\z)/ ) { logmsg "Warning: test$testnum not present in tests/data/Makefile.inc\n"; } if($disabled{$testnum}) { |