From: Tomas Mlcoch Date: Mon, 13 May 2013 11:03:42 +0000 (+0200) Subject: tests: prefix for C test changed to 'test_'. X-Git-Tag: upstream/0.2.1~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ce1f40ea6f3d6c6f98f10d2ac79c2d5c5cb19e5;p=services%2Fcreaterepo_c.git tests: prefix for C test changed to 'test_'. --- diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index cd373c6..2de6d47 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,18 +1,18 @@ -ADD_EXECUTABLE(testcompression_wrapper testcompression_wrapper.c) -TARGET_LINK_LIBRARIES(testcompression_wrapper libcreaterepo_c ${GLIB2_LIBRARIES}) -ADD_DEPENDENCIES(tests testcompression_wrapper) +ADD_EXECUTABLE(test_compression_wrapper test_compression_wrapper.c) +TARGET_LINK_LIBRARIES(test_compression_wrapper libcreaterepo_c ${GLIB2_LIBRARIES}) +ADD_DEPENDENCIES(tests test_compression_wrapper) -ADD_EXECUTABLE(testload_metadata testload_metadata.c) -TARGET_LINK_LIBRARIES(testload_metadata libcreaterepo_c ${GLIB2_LIBRARIES}) -ADD_DEPENDENCIES(tests testload_metadata) +ADD_EXECUTABLE(test_load_metadata test_load_metadata.c) +TARGET_LINK_LIBRARIES(test_load_metadata libcreaterepo_c ${GLIB2_LIBRARIES}) +ADD_DEPENDENCIES(tests test_load_metadata) -ADD_EXECUTABLE(testmisc testmisc.c) -TARGET_LINK_LIBRARIES(testmisc libcreaterepo_c ${GLIB2_LIBRARIES}) -ADD_DEPENDENCIES(tests testmisc) +ADD_EXECUTABLE(test_misc test_misc.c) +TARGET_LINK_LIBRARIES(test_misc libcreaterepo_c ${GLIB2_LIBRARIES}) +ADD_DEPENDENCIES(tests test_misc) -ADD_EXECUTABLE(testsqlite testsqlite.c) -TARGET_LINK_LIBRARIES(testsqlite libcreaterepo_c ${GLIB2_LIBRARIES}) -ADD_DEPENDENCIES(tests testsqlite) +ADD_EXECUTABLE(test_sqlite test_sqlite.c) +TARGET_LINK_LIBRARIES(test_sqlite libcreaterepo_c ${GLIB2_LIBRARIES}) +ADD_DEPENDENCIES(tests test_sqlite) #ADD_TEST(test_main gtester "${CMAKE_CURRENT_SOURCE_DIR}/test_data") CONFIGURE_FILE("run_gtester.sh.in" "run_gtester.sh") diff --git a/tests/testcompression_wrapper.c b/tests/test_compression_wrapper.c similarity index 100% rename from tests/testcompression_wrapper.c rename to tests/test_compression_wrapper.c diff --git a/tests/testload_metadata.c b/tests/test_load_metadata.c similarity index 100% rename from tests/testload_metadata.c rename to tests/test_load_metadata.c diff --git a/tests/testmisc.c b/tests/test_misc.c similarity index 100% rename from tests/testmisc.c rename to tests/test_misc.c diff --git a/tests/testsqlite.c b/tests/test_sqlite.c similarity index 100% rename from tests/testsqlite.c rename to tests/test_sqlite.c