blob: 7bc985715e3f57f8f55f4529d71bb6163a6a9974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
get_filename_component(tmp ".." ABSOLUTE)
get_filename_component(src_folder "${tmp}" NAME)
create_test_sourcelist(${src_folder}_tests test_suite.c
# Add new tests here
flow_test.c
ipcp_test.c
name_test.c
proc_test.c
prog_test.c
reg_test.c
)
add_executable(${src_folder}_test EXCLUDE_FROM_ALL ${${src_folder}_tests})
target_link_libraries(${src_folder}_test ouroboros-common)
if (CMAKE_BUILD_TYPE MATCHES "Debug*")
add_compile_flags(${src_folder}_test -DCONFIG_OUROBOROS_DEBUG)
endif ()
add_dependencies(check ${src_folder}_test)
set(tests_to_run ${${src_folder}_tests})
if(CMAKE_VERSION VERSION_LESS "3.29.0")
remove(tests_to_run test_suite.c)
else ()
list(POP_FRONT tests_to_run)
endif()
foreach(test ${tests_to_run})
get_filename_component(test_name ${test} NAME_WE)
add_test(irmd/reg/${test_name} ${C_TEST_PATH}/${src_folder}_test ${test_name})
endforeach(test)
|