Skip to content

Commit

Permalink
Refs #20242. Fix log thread being killed in windows on unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González <ricardo@richiware.dev>
  • Loading branch information
richiware committed Apr 10, 2024
1 parent feea1ec commit 5ae348a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3451,5 +3451,7 @@ int main(
char** argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
int ret_value = RUN_ALL_TESTS();
eprosima::fastdds::dds::Log::KillThread();
return ret_value;
}

0 comments on commit 5ae348a

Please sign in to comment.