diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-10-26 08:58:05 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-26 23:05:19 +0100 |
commit | 61630a155e1a81899ae99b1a5f284072606716e0 (patch) | |
tree | 67c959bc7a4d708ea4b23180782ea0905bbdae9e /tests | |
parent | 9f4c1c0ccee552401de750737e81f5572b36acca (diff) | |
download | curl-61630a155e1a81899ae99b1a5f284072606716e0.tar.gz |
runtests: show keywords when no tests ran
To help out future debugging, runtests now outputs the list of keywords
when it fails because no tests ran.
Ref: #6120
Closes #6126
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index c83b833a9..4bcf61bbf 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5780,6 +5780,13 @@ if($total) { } else { logmsg "\nTESTFAIL: No tests were performed\n\n"; + if(scalar(keys %enabled_keywords)) { + logmsg "TESTFAIL: Nothing matched these keywords: "; + for(keys %enabled_keywords) { + logmsg "$_ "; + } + logmsg "\n"; + } } if($all) { |