[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-07-02 Thread Ebuka Ezike via lldb-commits
https://github.com/da-viper closed https://github.com/llvm/llvm-project/pull/145231 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-25 Thread Ebuka Ezike via lldb-commits
https://github.com/da-viper approved this pull request. https://github.com/llvm/llvm-project/pull/145231 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-24 Thread via lldb-commits
https://github.com/DrSergei updated https://github.com/llvm/llvm-project/pull/145231 >From b3b919db7333ee20bc640e1b4b5a701891cc6443 Mon Sep 17 00:00:00 2001 From: Druzhkov Sergei Date: Thu, 19 Jun 2025 15:50:27 +0300 Subject: [PATCH] [lldb-dap] Fix flaky test --- lldb/test/API/tools/lldb-dap/

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread John Harrison via lldb-commits
@@ -101,7 +101,8 @@ def test_server_interrupt(self): # Interrupt the server which should disconnect all clients. process.send_signal(signal.SIGINT) -self.dap_server.wait_for_terminated() +self.dap_server.wait_for_event(["terminated", "exited"])

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread via lldb-commits
https://github.com/DrSergei updated https://github.com/llvm/llvm-project/pull/145231 >From b3b919db7333ee20bc640e1b4b5a701891cc6443 Mon Sep 17 00:00:00 2001 From: Druzhkov Sergei Date: Thu, 19 Jun 2025 15:50:27 +0300 Subject: [PATCH] [lldb-dap] Fix flaky test --- lldb/test/API/tools/lldb-dap/

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread John Harrison via lldb-commits
https://github.com/ashgti approved this pull request. https://github.com/llvm/llvm-project/pull/145231 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread John Harrison via lldb-commits
https://github.com/ashgti approved this pull request. https://github.com/llvm/llvm-project/pull/145231 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread via lldb-commits
@@ -310,7 +310,7 @@ serveConnection(const Socket::SocketProtocol &protocol, const std::string &name, "DAP session (" + client_name + ") error: "); } - + io->Close(); DrSerge

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread via lldb-commits
https://github.com/DrSergei updated https://github.com/llvm/llvm-project/pull/145231 >From f0b48bffc61c8f2b1c52d3f26b8a8b210a3756f7 Mon Sep 17 00:00:00 2001 From: Druzhkov Sergei Date: Thu, 19 Jun 2025 15:50:27 +0300 Subject: [PATCH] [lldb-dap] Fix flaky test --- lldb/test/API/tools/lldb-dap/

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-23 Thread Ebuka Ezike via lldb-commits
@@ -310,7 +310,7 @@ serveConnection(const Socket::SocketProtocol &protocol, const std::string &name, "DAP session (" + client_name + ") error: "); } - + io->Close(); da-vipe

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-22 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: None (DrSergei) Changes This patch fixes a possible data race between main and event handler threads. Terminated event can be sent from `Disconnect` function or event handler. Consequently, there are some possible sequences of events. We m

[Lldb-commits] [lldb] [lldb-dap] Fix flaky test (PR #145231)

2025-06-22 Thread via lldb-commits
https://github.com/DrSergei created https://github.com/llvm/llvm-project/pull/145231 This patch fixes a possible data race between main and event handler threads. Terminated event can be sent from `Disconnect` function or event handler. Consequently, there are some possible sequences of events