Skip to content

Commit fab6b07

Browse files
author
MarcoFalke
committed
test: txindex: interrupt threadGroup before calling destructor
1 parent 38989ab commit fab6b07

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/test/txindex_tests.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,13 @@ BOOST_FIXTURE_TEST_CASE(txindex_initial_sync, TestChain100Setup)
6969
}
7070
}
7171

72-
txindex.Stop(); // Stop thread before calling destructor
72+
// shutdown sequence (c.f. Shutdown() in init.cpp)
73+
txindex.Stop();
74+
75+
threadGroup.interrupt_all();
76+
threadGroup.join_all();
77+
78+
// Rest of shutdown sequence and destructors happen in ~TestingSetup()
7379
}
7480

7581
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)