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
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
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/
@@ -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"])
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/
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
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
@@ -310,7 +310,7 @@ serveConnection(const Socket::SocketProtocol &protocol,
const std::string &name,
"DAP session (" + client_name +
") error: ");
}
-
+ io->Close();
DrSerge
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/
@@ -310,7 +310,7 @@ serveConnection(const Socket::SocketProtocol &protocol,
const std::string &name,
"DAP session (" + client_name +
") error: ");
}
-
+ io->Close();
da-vipe
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
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
12 matches
Mail list logo