aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/DAP/Handler/DisconnectTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/DAP/Handler/DisconnectTest.cpp')
-rw-r--r--lldb/unittests/DAP/Handler/DisconnectTest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/unittests/DAP/Handler/DisconnectTest.cpp b/lldb/unittests/DAP/Handler/DisconnectTest.cpp
index 88d6e9a..212c569 100644
--- a/lldb/unittests/DAP/Handler/DisconnectTest.cpp
+++ b/lldb/unittests/DAP/Handler/DisconnectTest.cpp
@@ -34,6 +34,8 @@ TEST_F(DisconnectRequestHandlerTest, DisconnectTriggersTerminated) {
Run();
}
+// Is flaky on Linux, see https://github.com/llvm/llvm-project/issues/154763.
+#ifndef __linux__
TEST_F(DisconnectRequestHandlerTest, DisconnectTriggersTerminateCommands) {
CreateDebugger();
@@ -55,3 +57,4 @@ TEST_F(DisconnectRequestHandlerTest, DisconnectTriggersTerminateCommands) {
EXPECT_CALL(client, Received(IsEvent("terminated", _)));
Run();
}
+#endif