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 1e13843
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions fastdds.repos
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ repositories:
type: git
url: https://github.com/eProsima/Fast-DDS-Gen.git
version: 4.0.x-devel
googletest-distribution:
type: git
url: https://github.com/google/googletest.git
version: release-1.11.0
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 1e13843

Please sign in to comment.