Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lldb/unittests/Host/JSONTransportTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -336,3 +339,5 @@ TEST_F(JSONRPCTransportTest, NoDataTimeout) {
RunOnce<JSONTestType>(/*timeout=*/std::chrono::milliseconds(10)),
FailedWithMessage("timeout"));
}

#endif
Loading