• Home
  • Raw
  • Download

Lines Matching refs:test

1 project(test)  project
6 ${CMAKE_SOURCE_DIR}/../test/test-utils.h
7 ${CMAKE_SOURCE_DIR}/../test/test-utils.c
11 add_subdirectory( name-test )
13 set (test-service_SOURCES
14 ${CMAKE_SOURCE_DIR}/../test/test-service.c
15 ${CMAKE_SOURCE_DIR}/../test/test-utils.c
16 ${CMAKE_SOURCE_DIR}/../test/test-utils.h
19 set (test-names_SOURCES
20 ${CMAKE_SOURCE_DIR}/../test/test-names.c
21 ${CMAKE_SOURCE_DIR}/../test/test-utils.c
22 ${CMAKE_SOURCE_DIR}/../test/test-utils.h
26 ${CMAKE_SOURCE_DIR}/../test/break-loader.c
29 set (test-shell-service_SOURCES
30 ${CMAKE_SOURCE_DIR}/../test/test-shell-service.c
31 ${CMAKE_SOURCE_DIR}/../test/test-utils.c
32 ${CMAKE_SOURCE_DIR}/../test/test-utils.h
36 ${CMAKE_SOURCE_DIR}/../test/shell-test.c
40 ${CMAKE_SOURCE_DIR}/../test/spawn-test.c
43 set (test-exit_SOURCES
44 ${CMAKE_SOURCE_DIR}/../test/test-exit.c
47 set (test-segfault_SOURCES
48 ${CMAKE_SOURCE_DIR}/../test/test-segfault.c
51 set (test-sleep-forever_SOURCES
52 ${CMAKE_SOURCE_DIR}/../test/test-sleep-forever.c
56 ${CMAKE_SOURCE_DIR}/../test/decode-gcov.c
59 add_executable(test-service ${test-service_SOURCES})
60 target_link_libraries(test-service ${DBUS_INTERNAL_LIBRARIES})
62 add_executable(test-names ${test-names_SOURCES})
63 target_link_libraries(test-names ${DBUS_INTERNAL_LIBRARIES})
65 add_executable(shell-test ${shell-test_SOURCES})
66 target_link_libraries(shell-test ${DBUS_INTERNAL_LIBRARIES})
67 ADD_TEST(shell-test ${EXECUTABLE_OUTPUT_PATH}/shell-test${EXT})
69 add_executable(test-shell-service ${test-shell-service_SOURCES})
70 target_link_libraries(test-shell-service ${DBUS_INTERNAL_LIBRARIES})
72 add_executable(spawn-test ${spawn-test_SOURCES})
73 target_link_libraries(spawn-test ${DBUS_INTERNAL_LIBRARIES})
75 add_executable(test-exit ${test-exit_SOURCES})
76 target_link_libraries(test-exit ${DBUS_INTERNAL_LIBRARIES})
78 add_executable(test-segfault ${test-segfault_SOURCES})
79 target_link_libraries(test-segfault ${DBUS_INTERNAL_LIBRARIES})
81 add_executable(test-sleep-forever ${test-sleep-forever_SOURCES})
82 target_link_libraries(test-sleep-forever ${DBUS_INTERNAL_LIBRARIES})
89 test/data
90 test/data/valid-messages
91 test/data/invalid-messages
92 test/data/incomplete-messages
93 test/data/auth
94 test/data/sha-1
95 test/data/valid-config-files
96 test/data/valid-config-files/basic.d
97 test/data/valid-config-files/system.d
98 test/data/valid-config-files-system
99 test/data/valid-introspection-files
100 test/data/valid-messages
101 test/data/valid-service-files
102 test/data/valid-service-files-system
103 test/data/invalid-config-files
104 test/data/invalid-config-files-system
105 test/data/invalid-messages
106 test/data/invalid-service-files-system
107 test/data/equiv-config-files
108 test/data/equiv-config-files/basic
109 test/data/equiv-config-files/basic/basic.d
110 test/data/equiv-config-files/entities
111 test/data/equiv-config-files/entities/basic.d
117 MESSAGE(STATUS "Copying test files to test directory")
133 ### generate test files
134 MESSAGE(STATUS "Generating test files from templates into test directory")
156 MESSAGE(STATUS "Copying generated bus config files to test directory")
157 set (OUTDIR ${CMAKE_BINARY_DIR}/test/data/valid-config-files)