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: upstream/7.37.1~10575 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a0ca3066eb879a4bd4c775700684a9cd32c4dd8;p=platform%2Fupstream%2Fcurl.git 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 e0a4e16..df2babd 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; }