Skip to content

Commit 986d7aa

Browse files
authored
Bump ProtocolServerMCPTest timeout to 200ms (llvm#154182)
This should reduce flakes observed in the Fuchsia AArch64 Linux LLDB CI builders.
1 parent 3d6177c commit 986d7aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/ProtocolServer/ProtocolMCPServerTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class ProtocolServerMCPTest : public ::testing::Test {
144144
template <typename P>
145145
void
146146
RunOnce(const std::function<void(llvm::Expected<P>)> &callback,
147-
std::chrono::milliseconds timeout = std::chrono::milliseconds(100)) {
147+
std::chrono::milliseconds timeout = std::chrono::milliseconds(200)) {
148148
auto handle = m_transport_up->RegisterReadObject<P>(
149149
loop, [&](lldb_private::MainLoopBase &loop, llvm::Expected<P> message) {
150150
callback(std::move(message));

0 commit comments

Comments
 (0)