From 43e547da11baecbc479baca70fc0d676947f5c5c Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Sun, 1 Sep 2013 19:47:31 -0400 Subject: [PATCH] reorder tests --- src/tests/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 78dda81f..c08752de 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -16,6 +16,11 @@ target_link_libraries(PartManualTest ${KDE4_KPARTS_LIBS} kde4_add_unit_test(CharacterColorTest CharacterColorTest.cpp) target_link_libraries(CharacterColorTest ${KONSOLE_TEST_LIBS}) +if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + kde4_add_unit_test(DBusTest DBusTest.cpp) + target_link_libraries(DBusTest ${KONSOLE_TEST_LIBS}) +endif() + if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") kde4_add_unit_test(PartTest PartTest.cpp) target_link_libraries(PartTest ${KDE4_KPARTS_LIBS} @@ -23,11 +28,6 @@ if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") ${KONSOLE_TEST_LIBS}) endif() -if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - kde4_add_unit_test(DBusTest DBusTest.cpp) - target_link_libraries(DBusTest ${KONSOLE_TEST_LIBS}) -endif() - kde4_add_unit_test(ProfileTest ProfileTest.cpp) target_link_libraries(ProfileTest ${KONSOLE_TEST_LIBS})