Make changes to gtest ECC behavior suggested by @str4d.

This commit is contained in:
Sean Bowe
2018-08-01 16:53:27 -06:00
parent 262d21bcbb
commit 80bd573dc2
2 changed files with 5 additions and 4 deletions

View File

@@ -45,5 +45,9 @@ int main(int argc, char **argv) {
);
testing::InitGoogleMock(&argc, argv);
return RUN_ALL_TESTS();
auto ret = RUN_ALL_TESTS();
ECC_Stop();
return ret;
}