[Lldb-commits] [lldb] 3a36070 - [lldb] Disable JSONTransportTests on Windows. (#153453)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 13 11:07:07 PDT 2025
Author: John Harrison
Date: 2025-08-13T11:07:03-07:00
New Revision: 3a3607080eade5f8f4a734b9532e99294322783a
URL: https://github.com/llvm/llvm-project/commit/3a3607080eade5f8f4a734b9532e99294322783a
DIFF: https://github.com/llvm/llvm-project/commit/3a3607080eade5f8f4a734b9532e99294322783a.diff
LOG: [lldb] Disable JSONTransportTests on Windows. (#153453)
This is to unblock CI. Disabling the tests while I investigate the
timeouts.
Added:
Modified:
lldb/unittests/Host/JSONTransportTest.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/Host/JSONTransportTest.cpp b/lldb/unittests/Host/JSONTransportTest.cpp
index cb6da6b1bc677..4e94582d3bc6a 100644
--- a/lldb/unittests/Host/JSONTransportTest.cpp
+++ b/lldb/unittests/Host/JSONTransportTest.cpp
@@ -132,6 +132,9 @@ class JSONRPCTransportTest : public JSONTransportTest<JSONRPCTransport> {
} // namespace
+// Failing on Windows, see https://github.com/llvm/llvm-project/issues/153446.
+#ifndef _WIN32
+
TEST_F(HTTPDelimitedJSONTransportTest, MalformedRequests) {
std::string malformed_header =
"COnTent-LenGth: -1\r\nContent-Type: text/json\r\n\r\nnotjosn";
@@ -336,3 +339,5 @@ TEST_F(JSONRPCTransportTest, NoDataTimeout) {
RunOnce<JSONTestType>(/*timeout=*/std::chrono::milliseconds(10)),
FailedWithMessage("timeout"));
}
+
+#endif
More information about the lldb-commits
mailing list