modified output to prevent the autobuild system to trap on the 'FAILED' output
authorDaniel Stenberg <daniel@haxx.se>
Wed, 4 Jan 2006 23:02:40 +0000 (23:02 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 4 Jan 2006 23:02:40 +0000 (23:02 +0000)
mistaking it for an actual failed test case

tests/server/resolve.c

index e0a4e16..df2babd 100644 (file)
@@ -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;
 }