Completely removed main from tests

Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
Fabian Sauter 2022-07-18 12:20:20 +02:00
parent 4e9cebb308
commit 1d99aebbfd
15 changed files with 1 additions and 169 deletions

View file

@ -44,15 +44,3 @@ TEST(TestTensor, DataTypes)
EXPECT_EQ(tensor->dataType(), kp::Tensor::TensorDataTypes::eDouble);
}
}
int
main(int argc, char* argv[])
{
testing::InitGoogleTest(&argc, argv);
#if !KOMPUTE_OPT_LOG_LEVEL_DISABLED
logger::setupLogger();
#endif
return RUN_ALL_TESTS();
}