mirror of
https://github.com/curl/curl.git
synced 2026-07-23 08:47:15 +03:00
runtests: fix skipping tests not done event-based
... and call timestampskippedevents() to avoid the flood of uninitialized variable warnings. Closes #8977
This commit is contained in:
parent
07058f6ad8
commit
f317b75c5e
1 changed files with 6 additions and 5 deletions
|
|
@ -4141,6 +4141,12 @@ sub singletest {
|
|||
$DBGCURL=$CMDLINE;
|
||||
}
|
||||
|
||||
if($fail_due_event_based) {
|
||||
logmsg "This test cannot run event based\n";
|
||||
timestampskippedevents($testnum);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if($gdbthis) {
|
||||
# gdb is incompatible with valgrind, so disable it when debugging
|
||||
# Perhaps a better approach would be to run it under valgrind anyway
|
||||
|
|
@ -4148,11 +4154,6 @@ sub singletest {
|
|||
$disablevalgrind=1;
|
||||
}
|
||||
|
||||
if($fail_due_event_based) {
|
||||
logmsg "This test cannot run event based\n";
|
||||
return -1;
|
||||
}
|
||||
|
||||
my @stdintest = getpart("client", "stdin");
|
||||
|
||||
if(@stdintest) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue