summaryrefslogtreecommitdiffstats
path: root/cmake/test
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2007-04-28 19:37:25 +0000
committerRalf Habacker <ralf.habacker@freenet.de>2007-04-28 19:37:25 +0000
commit17b84104f236db19bca72c5afca5df0cd49abae1 (patch)
tree496dd0a0065ddbf29fa8ae5d6454737eea695e3f /cmake/test
parentc85da0358009d318553506b94f4b24eb8783b6f9 (diff)
* cmake/: don't install test applications and service files, moved CMAKE_DEBUG_POSTFIX to top level CMakeLists.txt
Diffstat (limited to 'cmake/test')
-rw-r--r--cmake/test/CMakeLists.txt14
-rw-r--r--cmake/test/name-test/CMakeLists.txt6
2 files changed, 10 insertions, 10 deletions
diff --git a/cmake/test/CMakeLists.txt b/cmake/test/CMakeLists.txt
index 65606bf7..ef79c263 100644
--- a/cmake/test/CMakeLists.txt
+++ b/cmake/test/CMakeLists.txt
@@ -90,7 +90,7 @@ set (decode_gcov_SOURCES
add_executable(test-service ${test-service_SOURCES})
target_link_libraries(test-service dbus-1)
-install_targets(/bin test-service)
+#install_targets(/bin test-service)
# (rh) does not work at now
ADD_TEST(test-service ${EXECUTABLE_OUTPUT_PATH}/test-service${EXT})
@@ -99,17 +99,17 @@ 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)
+#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)
+#install_targets(/bin test-shell)
ADD_TEST(test-shell ${EXECUTABLE_OUTPUT_PATH}/test-shell${EXT})
add_executable(test-shell-service ${test-shell_SOURCES})
target_link_libraries(test-shell-service dbus-1)
-install_targets(/bin test-shell-service)
+#install_targets(/bin test-shell-service)
ADD_TEST(test-shell-service ${EXECUTABLE_OUTPUT_PATH}/test-shell-service${EXT})
add_executable(test-spawn ${test-spawn_SOURCES})
@@ -119,12 +119,12 @@ target_link_libraries(test-spawn dbus-1)
add_executable(test-exit ${test-exit_SOURCES})
target_link_libraries(test-exit dbus-1)
-install_targets(/bin test-exit)
+#install_targets(/bin test-exit)
ADD_TEST(test-exit ${EXECUTABLE_OUTPUT_PATH}/test-exit${EXT})
add_executable(test-segfault ${test-segfault_SOURCES})
target_link_libraries(test-segfault dbus-1)
-install_targets(/bin test-segfault)
+#install_targets(/bin test-segfault)
ADD_TEST(test-segfault ${EXECUTABLE_OUTPUT_PATH}/test-segfault${EXT})
add_executable(test-sleep-forever ${test-sleep-forever_SOURCES})
@@ -203,7 +203,7 @@ FOREACH(FILE ${FILES})
MESSAGE("FROM: ${FILE}\nTO: ${TARGET}\n")
ENDIF (CONFIG_VERBOSE)
configure_file(${FILE} ${TARGET} )
- install_files(/data/dbus-1/services FILES ${TARGET})
+ #install_files(/data/dbus-1/services FILES ${TARGET})
ENDFOREACH(FILE)
#
diff --git a/cmake/test/name-test/CMakeLists.txt b/cmake/test/name-test/CMakeLists.txt
index 3b8f39ec..2af0d891 100644
--- a/cmake/test/name-test/CMakeLists.txt
+++ b/cmake/test/name-test/CMakeLists.txt
@@ -9,17 +9,17 @@ add_definitions(-DDBUS_COMPILATION)
# there is also a test-names executable, don't know if this is the same
add_executable(test-names1 ${NAMEtest-DIR}/test-names.c)
target_link_libraries(test-names1 dbus-1)
-install_targets(/bin test-names1)
+#install_targets(/bin test-names1)
ADD_TEST(test-names ${EXECUTABLE_OUTPUT_PATH}/test-names1)
add_executable(test-pending-call-dispatch ${NAMEtest-DIR}/test-pending-call-dispatch.c)
target_link_libraries(test-pending-call-dispatch dbus-1)
-install_targets(/bin test-pending-call-dispatch)
+#install_targets(/bin test-pending-call-dispatch)
ADD_TEST(test-pending-call-dispatch ${EXECUTABLE_OUTPUT_PATH}/test-pending_call-dispatch)
add_executable(test-thread-init ${NAMEtest-DIR}/test-threads-init.c)
target_link_libraries(test-thread-init dbus-1)
-install_targets(/bin test-thread-init)
+#install_targets(/bin test-thread-init)
ADD_TEST(test-names ${EXECUTABLE_OUTPUT_PATH}/test-thread-init)
endif (DBUS_BUILD_TESTS)