diff options
Diffstat (limited to 'lldb/unittests/Host/JSONTransportTest.cpp')
| -rw-r--r-- | lldb/unittests/Host/JSONTransportTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/unittests/Host/JSONTransportTest.cpp b/lldb/unittests/Host/JSONTransportTest.cpp index cb6da6b1bc67..4e94582d3bc6 100644 --- a/lldb/unittests/Host/JSONTransportTest.cpp +++ b/lldb/unittests/Host/JSONTransportTest.cpp @@ -132,6 +132,9 @@ public: } // 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 |
