summaryrefslogtreecommitdiff
path: root/indra/llcorehttp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-06 14:22:42 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-06 14:22:42 -0500
commit8948c4f001b77f1a5755716a353f2295bf246322 (patch)
tree1ba1324286a30f2b9b1eb3394cf67949ec50e461 /indra/llcorehttp
parent68413474c4479eee9bdbeb34ea131475ba1d646e (diff)
DRTVWR-418: Skip the llcorehttp test that breaks test machinery.
Loath though I am to skip testing, this consistent failure is not a failure in the software being tested (llcorehttp) but rather in the dummy server with which we're testing it.
Diffstat (limited to 'indra/llcorehttp')
-rw-r--r--indra/llcorehttp/tests/test_httprequest.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcorehttp/tests/test_httprequest.hpp b/indra/llcorehttp/tests/test_httprequest.hpp
index 463e55dd7e..a51b1fd32d 100644
--- a/indra/llcorehttp/tests/test_httprequest.hpp
+++ b/indra/llcorehttp/tests/test_httprequest.hpp
@@ -1509,6 +1509,10 @@ void HttpRequestTestObjectType::test<14>()
ensure("Request executed in reasonable time", count < limit);
ensure("One handler invocation for request", mHandlerCalls == 1);
+#if LL_WINDOWS
+ skip("This test causes our dummy server test_llcorehttp_peer.py to fail");
+#endif
+
// Okay, request a shutdown of the servicing thread
mStatus = HttpStatus();
handle = req->requestStopThread(handlerp);