diff --git a/unitTests/CMakeLists.txt b/unitTests/CMakeLists.txt index 88a61e3f..b18e0393 100644 --- a/unitTests/CMakeLists.txt +++ b/unitTests/CMakeLists.txt @@ -6,7 +6,6 @@ if( EXV_ENABLE_VIDEO ) endif() add_executable(unit_tests - mainTestRunner.cpp test_basicio.cpp test_bmpimage.cpp test_cr2header_int.cpp @@ -45,7 +44,6 @@ target_compile_definitions(unit_tests target_link_libraries(unit_tests PRIVATE exiv2lib - GTest::gtest GTest::gtest_main std::filesystem ) diff --git a/unitTests/mainTestRunner.cpp b/unitTests/mainTestRunner.cpp deleted file mode 100644 index 6f2fcd4a..00000000 --- a/unitTests/mainTestRunner.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0-or-later - -#include -#include - -int main(int argc, char** argv) { - ::testing::InitGoogleTest(&argc, argv); - - int ret = RUN_ALL_TESTS(); - - std::cout << "Tests finished with return value: " << ret << std::endl; - - return ret; -}