runtests: provide nicer errormsg when protocol "dump" file is empty

This commit is contained in:
Daniel Stenberg 2020-04-08 09:44:33 +02:00
Родитель 0fdf965126
Коммит 4d939ef6ce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -4122,6 +4122,13 @@ sub singletest {
}
}
if(($out[0] eq "") && $protstrip[0]) {
logmsg "\n $testnum: protocol FAILED!\n".
" There was no content at all in the file $SERVERIN.\n".
" Server glitch? Total curl failure?\n";
return $errorreturncode;
}
$res = compare($testnum, $testname, "protocol", \@out, \@protstrip);
if($res) {
return $errorreturncode;