Skip to content

Commit 3a36070

Browse files
authored
[lldb] Disable JSONTransportTests on Windows. (#153453)
This is to unblock CI. Disabling the tests while I investigate the timeouts.
1 parent 41c9510 commit 3a36070

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lldb/unittests/Host/JSONTransportTest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ class JSONRPCTransportTest : public JSONTransportTest<JSONRPCTransport> {
132132

133133
} // namespace
134134

135+
// Failing on Windows, see https://github.com/llvm/llvm-project/issues/153446.
136+
#ifndef _WIN32
137+
135138
TEST_F(HTTPDelimitedJSONTransportTest, MalformedRequests) {
136139
std::string malformed_header =
137140
"COnTent-LenGth: -1\r\nContent-Type: text/json\r\n\r\nnotjosn";
@@ -336,3 +339,5 @@ TEST_F(JSONRPCTransportTest, NoDataTimeout) {
336339
RunOnce<JSONTestType>(/*timeout=*/std::chrono::milliseconds(10)),
337340
FailedWithMessage("timeout"));
338341
}
342+
343+
#endif

0 commit comments

Comments
 (0)