File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/unittests/ExecutionEngine/Orc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,8 @@ TEST(DummyRPC, TestCallAsyncVoidBool) {
214214 EXPECT_FALSE (!!Err) << " Client failed to handle response from void(bool)" ;
215215 }
216216
217+ ServerThread.join ();
218+
217219 // The client should have made two calls to send: One implicit call to
218220 // negotiate the VoidBool function key, and a second to make the VoidBool
219221 // call.
@@ -224,8 +226,6 @@ TEST(DummyRPC, TestCallAsyncVoidBool) {
224226 // the negotiate call, and another to send the response to the VoidBool call.
225227 EXPECT_EQ (Channels.second ->SendCalls , 2U )
226228 << " Expected two send calls to have been made by server" ;
227-
228- ServerThread.join ();
229229}
230230
231231TEST (DummyRPC, TestCallAsyncIntInt) {
You can’t perform that action at this time.
0 commit comments