From: Daniel Stenberg Date: Wed, 4 Jan 2006 23:02:40 +0000 (+0000) Subject: modified output to prevent the autobuild system to trap on the 'FAILED' output X-Git-Tag: curl-7_15_2~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a0ca3066eb879a4bd4c775700684a9cd32c4dd8;p=curl modified output to prevent the autobuild system to trap on the 'FAILED' output mistaking it for an actual failed test case --- diff --git a/tests/server/resolve.c b/tests/server/resolve.c index e0a4e1666..df2babd04 100644 --- a/tests/server/resolve.c +++ b/tests/server/resolve.c @@ -143,7 +143,7 @@ int main(int argc, char *argv[]) } #endif if(rc) - printf("Resolving '%s' FAILED\n", host); + printf("Resolving '%s' didn't work\n", host); return !rc?0:1; }