summaryrefslogtreecommitdiff
path: root/cmake/test
diff options
context:
space:
mode:
authorFrank Osterfeld <frank@kdab.net>2009-04-28 16:14:13 +0200
committerRalf Habacker <ralf.habacker@freenet.de>2009-11-30 11:39:21 +0100
commitc89d5067005e1db1c5f2cf80158ebbfb9db40177 (patch)
treec4134faf95af9baacb4284fc3c6972fcf92c8db6 /cmake/test
parenta4e65790ea9f83091da159ee08508acabfc4e6a2 (diff)
downloaddbus-c89d5067005e1db1c5f2cf80158ebbfb9db40177.tar.gz
bus-test-launch-helper is a unit test, test-service and test-shell-service are not. Rename test-shell to shell-test to match autotools (cherry picked from commit b106387b73d6a300a013a15f6507244e82f007ed)
Diffstat (limited to 'cmake/test')
-rw-r--r--cmake/test/CMakeLists.txt15
1 files changed, 4 insertions, 11 deletions
diff --git a/cmake/test/CMakeLists.txt b/cmake/test/CMakeLists.txt
index 013963ef..c0c9bc7c 100644
--- a/cmake/test/CMakeLists.txt
+++ b/cmake/test/CMakeLists.txt
@@ -62,7 +62,7 @@ set (test-shell-service_SOURCES
${CMAKE_SOURCE_DIR}/../test/test-utils.h
)
-set (test-shell_SOURCES
+set (shell-test_SOURCES
${CMAKE_SOURCE_DIR}/../test/shell-test.c
)
@@ -90,25 +90,18 @@ add_executable(test-service ${test-service_SOURCES})
target_link_libraries(test-service ${DBUS_1})
#install_targets(/bin test-service)
-# (rh) does not work at now
-ADD_TEST(test-service ${EXECUTABLE_OUTPUT_PATH}/test-service${EXT})
-
-
-
add_executable(test-names ${test-names_SOURCES})
target_link_libraries(test-names ${DBUS_1})
#install_targets(/bin test-names)
ADD_TEST(test-names ${EXECUTABLE_OUTPUT_PATH}/test-names${EXT})
-add_executable(test-shell ${test-shell_SOURCES})
-target_link_libraries(test-shell ${DBUS_1})
-#install_targets(/bin test-shell)
-ADD_TEST(test-shell ${EXECUTABLE_OUTPUT_PATH}/test-shell${EXT})
+add_executable(shell-test ${shell-test_SOURCES})
+target_link_libraries(shell-test ${DBUS_1})
+ADD_TEST(shell-test ${EXECUTABLE_OUTPUT_PATH}/shell-test${EXT})
add_executable(test-shell-service ${test-shell-service_SOURCES})
target_link_libraries(test-shell-service ${DBUS_1})
#install_targets(/bin test-shell-service)
-ADD_TEST(test-shell-service ${EXECUTABLE_OUTPUT_PATH}/test-shell-service${EXT})
add_executable(spawn-test ${spawn-test_SOURCES})
target_link_libraries(spawn-test ${DBUS_1})