From 6318f6fd76ecd6dbab29cf58bf3581d2d41230f9 Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Wed, 13 Sep 2023 00:11:57 +0000 Subject: [PATCH] Increase `initialize()` timeout --- test/mp_unit/bootstrap_tests.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mp_unit/bootstrap_tests.cc b/test/mp_unit/bootstrap_tests.cc index c91cd1ab5..82120a1f7 100644 --- a/test/mp_unit/bootstrap_tests.cc +++ b/test/mp_unit/bootstrap_tests.cc @@ -72,7 +72,7 @@ TEST_F(BootstrapTest, ResumeWithId) { mscclpp::UniqueId id; if (bootstrap->getRank() == 0) id = bootstrap->createUniqueId(); MPI_Bcast(&id, sizeof(id), MPI_BYTE, 0, MPI_COMM_WORLD); - bootstrap->initialize(id, 100); + bootstrap->initialize(id, 300); } }