summaryrefslogtreecommitdiff
path: root/source/test/programs/CMakeLists.txt
blob: 4fd3660234e94b503bc1599bb0ec987019c3b866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if(KIT_ENABLE_TESTING)
  add_executable(too_many_tests too_many_tests.c)
  target_link_libraries(too_many_tests ${KIT_TEST_LIBRARY})
  add_test(
    NAME too_many_tests_test
    COMMAND too_many_tests)
  set_tests_properties(
    too_many_tests_test
    PROPERTIES
    TIMEOUT "30")

  add_executable(too_many_assertions too_many_assertions.c)
  target_link_libraries(too_many_assertions ${KIT_TEST_LIBRARY})
  add_test(
    NAME too_many_assertions_test
    COMMAND too_many_assertions)
  set_tests_properties(
    too_many_assertions_test
    PROPERTIES
    TIMEOUT "30")
endif()