summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/tests/test_httprequest.hpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-06 15:38:31 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-06 15:38:31 -0500
commit4c89e6dea0d539c9177bff7bc45e8d411efe6e5c (patch)
tree0235b2bd82d5f4ffe83c9653179f3224199f7ebb /indra/llcorehttp/tests/test_httprequest.hpp
parent8948c4f001b77f1a5755716a353f2295bf246322 (diff)
DRTVWR-418: Skip the whole of the failing llcorehttp test function.
Diffstat (limited to 'indra/llcorehttp/tests/test_httprequest.hpp')
-rw-r--r--indra/llcorehttp/tests/test_httprequest.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcorehttp/tests/test_httprequest.hpp b/indra/llcorehttp/tests/test_httprequest.hpp
index a51b1fd32d..0aad3d1835 100644
--- a/indra/llcorehttp/tests/test_httprequest.hpp
+++ b/indra/llcorehttp/tests/test_httprequest.hpp
@@ -1455,6 +1455,10 @@ void HttpRequestTestObjectType::test<14>()
set_test_name("HttpRequest GET timeout");
+#if LL_WINDOWS
+ skip("This test causes our dummy server test_llcorehttp_peer.py to fail");
+#endif
+
// Handler can be stack-allocated *if* there are no dangling
// references to it after completion of this method.
// Create before memory record as the string copy will bump numbers.
@@ -1509,10 +1513,6 @@ 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);