changed: suppress profiler output in unit tests

This commit is contained in:
Arne Morten Kvarving 2022-05-11 11:58:10 +02:00
parent 3f007fdec5
commit bbb90d468e

View File

@ -24,7 +24,7 @@ int main (int argc, char** argv)
{
testing::InitGoogleTest(&argc, argv);
IFEM::Init(argc, argv);
Profiler prof(argv[0]);
Profiler prof(argv[0], false);
return RUN_ALL_TESTS();
}