Author: David Spickett Date: 2025-10-27T10:42:49Z New Revision: 67de7106b9f73ed2be804e3488a20332f363359d
URL: https://github.com/llvm/llvm-project/commit/67de7106b9f73ed2be804e3488a20332f363359d DIFF: https://github.com/llvm/llvm-project/commit/67de7106b9f73ed2be804e3488a20332f363359d.diff LOG: [lldb-dap][test] Disable DisconnectTriggersTerminateCommands on Linux It is flaky, see https://github.com/llvm/llvm-project/issues/154763. Added: Modified: lldb/unittests/DAP/Handler/DisconnectTest.cpp Removed: ################################################################################ diff --git a/lldb/unittests/DAP/Handler/DisconnectTest.cpp b/lldb/unittests/DAP/Handler/DisconnectTest.cpp index 88d6e9a69eca3..212c5698feea8 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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
