summaryrefslogtreecommitdiff
path: root/indra/llcorehttp
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@posteo.nl>2024-07-26 19:15:58 +0200
committerNicky <nicky.dasmijn@posteo.nl>2024-07-26 19:15:58 +0200
commit4ac06dd6a166fc63b0dda3eebbc33373192511f0 (patch)
tree2f08e96a62bc1802c24d15aa1b7f24256a805037 /indra/llcorehttp
parente6eb39b34cfaab5425dd57e88c734c1d6bb8460d (diff)
Disable test_httprequest for Linux, same reason why it was already disabled for Windows
Diffstat (limited to 'indra/llcorehttp')
-rwxr-xr-xindra/llcorehttp/tests/llcorehttp_test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llcorehttp/tests/llcorehttp_test.cpp b/indra/llcorehttp/tests/llcorehttp_test.cpp
index c0cc2c8030..8a788e5a93 100755
--- a/indra/llcorehttp/tests/llcorehttp_test.cpp
+++ b/indra/llcorehttp/tests/llcorehttp_test.cpp
@@ -43,9 +43,12 @@
#include "test_httpoperation.hpp"
// As of 2019-06-28, test_httprequest.hpp consistently crashes on Mac Release
// builds for reasons not yet diagnosed.
-#if ! (LL_DARWIN && LL_RELEASE)
+// On Linux too, this is likely to badly handling (p)thread creation and not waiting
+// for threads to properly shutdown
+#if LL_WINDOWS
#include "test_httprequest.hpp"
#endif
+
#include "test_httpheaders.hpp"
#include "test_httprequestqueue.hpp"
#include "_httpservice.h"