aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-11-04 21:58:09 +0100
committerChristian Grothoff <christian@grothoff.org>2016-11-04 21:58:09 +0100
commit3ccd1b4586df4fce288b1f3472d5d5d5ed601186 (patch)
treee190b556b64135eb46e5984b1e7584c828990606
parent94ff0707749af6998a051e10e86239d4f8506769 (diff)
downloadlibmicrohttpd-3ccd1b4586df4fce288b1f3472d5d5d5ed601186.tar.gz
libmicrohttpd-3ccd1b4586df4fce288b1f3472d5d5d5ed601186.zip
return skipped if wget was not found
-rw-r--r--src/testcurl/test_quiesce_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/test_quiesce_stream.c b/src/testcurl/test_quiesce_stream.c
index 478b1109..924afb4e 100644
--- a/src/testcurl/test_quiesce_stream.c
+++ b/src/testcurl/test_quiesce_stream.c
@@ -186,7 +186,7 @@ main()
186 if (0 != system ("wget --server-response -q -O - 127.0.0.1:8000")) 186 if (0 != system ("wget --server-response -q -O - 127.0.0.1:8000"))
187 { 187 {
188 MHD_stop_daemon (daemon); 188 MHD_stop_daemon (daemon);
189 return EXIT_SUCCESS; 189 return 77; /* skipped */
190 } 190 }
191 // wait for a request 191 // wait for a request
192 while (0 == request_counter) 192 while (0 == request_counter)