tests: log the test result code after each libtest

This makes it easier to determine the test status. Also, capitalize
FAILURE and ABORT messages in log lines to make them easier to spot.
This commit is contained in:
Dan Fandrich 2023-09-13 11:31:16 -07:00
parent 3aa3cc9b05
commit 06cdfad49f
2 changed files with 17 additions and 16 deletions

View file

@ -172,6 +172,7 @@ int main(int argc, char **argv)
fprintf(stderr, "URL: %s\n", URL);
result = test(URL);
fprintf(stderr, "Test ended with result %d\n", result);
#ifdef WIN32
/* flush buffers of all streams regardless of mode */