Skip to content

Commit 0e5049c

Browse files
committed
cmake: implements tests using CTest suite
the new tests are implemented with CTest suite of CMake. To enable the tests you need to run cmake with -DBUILD_TESTING=ON There are optional tests (that might not work) that can be enabled with -DOPTIONAL_TEST=ON So, to enable all tests and run it use the following command mkdir build cmake -DBUILD_TESTING=ON -DOPTIONA_TEST=ON .. make ctest to debug the errors use ctest --debug You can always find all tests binary on build/test/ Implementation: - check-modem* tests are implemented with shell script because it requires to execute many commands and therefore will be easy to manage. The file is configured at configuration time. - for single binary we verify the exit status (default = 0) so you only need to build the binary and add it to add_test()
1 parent de98f26 commit 0e5049c

11 files changed

+654
-62
lines changed

CMakeLists.txt

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# TODO:
2-
# - check which MSVC are compatible
3-
# - cpack
4-
# - ctest
5-
61
cmake_minimum_required(VERSION 3.1.0)
72

83
project(direwolf)
@@ -17,6 +12,7 @@ set(direwolf_VERSION_SUFFIX "")
1712
option(FORCE_SSE "Compile with SSE instruction only" OFF)
1813
option(FORCE_SSSE3 "Compile with SSSE3 instruction only" OFF)
1914
option(FORCE_SSE41 "Compile with SSE4.1 instruction only" OFF)
15+
option(OPTIONAL_TEST "Compile optional test (might be broken)" OFF)
2016

2117
# where cmake find custom modules
2218
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
@@ -70,6 +66,7 @@ if(direwolf_VERSION_COMMIT)
7066
add_definitions("-DEXTRA_VERSION=${direwolf_VERSION_COMMIT}")
7167
endif()
7268

69+
set(CUSTOM_SRC_DIR "${CMAKE_SOURCE_DIR}/src")
7370
set(CUSTOM_EXTERNAL_DIR "${CMAKE_SOURCE_DIR}/external")
7471
set(CUSTOM_MISC_DIR "${CUSTOM_EXTERNAL_DIR}/misc")
7572
set(CUSTOM_REGEX_DIR "${CUSTOM_EXTERNAL_DIR}/regex")
@@ -80,6 +77,9 @@ set(CUSTOM_TELEMETRY_DIR "${CUSTOM_SCRIPTS_DIR}/telemetry-toolkit")
8077
set(CUSTOM_CONF_DIR "${CMAKE_SOURCE_DIR}/conf")
8178
set(CUSTOM_DOC_DIR "${CMAKE_SOURCE_DIR}/doc")
8279
set(CUSTOM_MAN_DIR "${CMAKE_SOURCE_DIR}/man")
80+
set(CUSTOM_TEST_DIR "${CMAKE_SOURCE_DIR}/test")
81+
set(CUSTOM_TEST_SCRIPTS_DIR "${CUSTOM_TEST_DIR}/scripts")
82+
set(CUSTOM_SHELL_SHABANG "#!/bin/sh -e")
8383

8484
# if we don't set build_type
8585
if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "")
@@ -124,6 +124,8 @@ elseif (WIN32)
124124
# compile with full multicore
125125
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP")
126126
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
127+
128+
set(CUSTOM_SHELL_BIN "")
127129
endif()
128130

129131
if (C_CLANG OR C_GCC)
@@ -191,6 +193,15 @@ add_subdirectory(${CUSTOM_MISC_DIR})
191193
# direwolf source code and utilities
192194
add_subdirectory(src)
193195

196+
# ctest
197+
# Note CMake will generate tests only if the enable_testing() command
198+
# has been invoked. The CTest module invokes the command automatically
199+
# when the BUILD_TESTING option is ON.
200+
include(CTest)
201+
if(BUILD_TESTING)
202+
add_subdirectory(test)
203+
endif()
204+
194205
# manage scripts
195206
add_subdirectory(scripts)
196207

src/CMakeLists.txt

+26-57
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# global includes
22
# not ideal but not so slow
3+
# otherwise use target_include_directories
34
include_directories(
45
${GPSD_INCLUDE_DIRS}
56
${HAMLIB_INCLUDE_DIRS}
@@ -11,8 +12,7 @@ include_directories(
1112

1213
# build gen_fff to create fsk_fast_filter.h
1314
# optimization for slow processors
14-
set(gen_fff_SOURCES
15-
${gen_fff_SOURCES}
15+
list(APPEND gen_fff_SOURCES
1616
demod_afsk.c
1717
dsp.c
1818
textcolor.c
@@ -32,9 +32,9 @@ add_custom_command(TARGET gen_fff
3232
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
3333
)
3434

35+
3536
# direwolf
36-
set(direwolf_SOURCES
37-
${direwolf_SOURCES}
37+
list(APPEND direwolf_SOURCES
3838
direwolf.c
3939
aprs_tt.c
4040
audio_stats.c
@@ -97,29 +97,25 @@ set(direwolf_SOURCES
9797
)
9898

9999
if(LINUX)
100-
set(direwolf_SOURCES
101-
${direwolf_SOURCES}
100+
list(APPEND direwolf_SOURCES
102101
audio.c
103102
)
104103
if(UDEV_FOUND)
105-
set(direwolf_SOURCES
106-
${direwolf_SOURCES}
104+
list(APPEND direwolf_SOURCES
107105
cm108.c
108106
)
109107
endif()
110108
elseif(WIN32) # windows
111-
set(direwolf_SOURCES
112-
${direwolf_SOURCES}
113-
audio_win.c
109+
list(APPEND direwolf_SOURCES
110+
audio_win.c
114111

115-
# icon
116-
${CMAKE_SOURCE_DIR}/cmake/cpack/direwolf.rc
117-
)
112+
# icon
113+
${CMAKE_SOURCE_DIR}/cmake/cpack/direwolf.rc
114+
)
118115
else() # macOS freebsd openbsd
119-
set(direwolf_SOURCES
120-
${direwolf_SOURCES}
121-
audio_portaudio.c
122-
)
116+
list(APPEND direwolf_SOURCES
117+
audio_portaudio.c
118+
)
123119
endif()
124120

125121
add_executable(direwolf
@@ -141,8 +137,7 @@ target_link_libraries(direwolf
141137
)
142138

143139
# decode_aprs
144-
set(decode_aprs_SOURCES
145-
${decode_aprs_SOURCES}
140+
list(APPEND decode_aprs_SOURCES
146141
decode_aprs.c
147142
kiss_frame.c
148143
ax25_pad.c
@@ -178,8 +173,7 @@ target_link_libraries(decode_aprs
178173

179174
# Convert between text and touch tone representation.
180175
# text2tt
181-
set(text2tt_SOURCES
182-
${text2tt_SOURCES}
176+
list(APPEND text2tt_SOURCES
183177
tt_text.c
184178
)
185179

@@ -196,8 +190,7 @@ target_link_libraries(text2tt
196190
)
197191

198192
# tt2text
199-
set(tt2text_SOURCES
200-
${tt2text_SOURCES}
193+
list(APPEND tt2text_SOURCES
201194
tt_text.c
202195
)
203196

@@ -216,8 +209,7 @@ target_link_libraries(tt2text
216209

217210
# Convert between Latitude/Longitude and UTM coordinates.
218211
# ll2utm
219-
set(ll2utm_SOURCES
220-
${ll2utm_SOURCES}
212+
list(APPEND ll2utm_SOURCES
221213
ll2utm.c
222214
textcolor.c
223215
)
@@ -232,8 +224,7 @@ target_link_libraries(ll2utm
232224
)
233225

234226
# utm2ll
235-
set(utm2ll_SOURCES
236-
${utm2ll_SOURCES}
227+
list(APPEND utm2ll_SOURCES
237228
utm2ll.c
238229
textcolor.c
239230
)
@@ -250,8 +241,7 @@ target_link_libraries(utm2ll
250241

251242
# Convert from log file to GPX.
252243
# log2gpx
253-
set(log2gpx_SOURCES
254-
${log2gpx_SOURCES}
244+
list(APPEND log2gpx_SOURCES
255245
log2gpx.c
256246
textcolor.c
257247
)
@@ -267,8 +257,7 @@ target_link_libraries(log2gpx
267257

268258
# Test application to generate sound.
269259
# gen_packets
270-
set(gen_packets_SOURCES
271-
${gen_packets_SOURCES}
260+
list(APPEND gen_packets_SOURCES
272261
gen_packets.c
273262
ax25_pad.c
274263
hdlc_send.c
@@ -291,8 +280,7 @@ target_link_libraries(gen_packets
291280

292281
# Unit test for AFSK demodulator
293282
# atest
294-
set(atest_SOURCES
295-
${atest_SOURCES}
283+
list(APPEND atest_SOURCES
296284
atest.c
297285
demod.c
298286
demod_afsk.c
@@ -333,8 +321,7 @@ target_link_libraries(atest
333321

334322
# Multiple AGWPE network or serial port clients to test TNCs side by side.
335323
# aclients
336-
set(aclients_SOURCES
337-
${aclients_SOURCES}
324+
list(APPEND aclients_SOURCES
338325
aclients.c
339326
ax25_pad.c
340327
fcs_calc.c
@@ -354,8 +341,7 @@ target_link_libraries(aclients
354341
# Talk to a KISS TNC.
355342
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
356343
# kissutil
357-
set(kissutil_SOURCES
358-
${kissutil_SOURCES}
344+
list(APPEND kissutil_SOURCES
359345
kissutil.c
360346
kiss_frame.c
361347
ax25_pad.c
@@ -383,8 +369,7 @@ target_link_libraries(kissutil
383369
# List USB audio adapters than can use GPIO for PTT.
384370
# cm108
385371
if(UDEV_FOUND)
386-
set(cm108_SOURCES
387-
${cm108_SOURCES}
372+
list(APPEND cm108_SOURCES
388373
cm108.c
389374
textcolor.c
390375
)
@@ -406,8 +391,7 @@ endif()
406391

407392
# Touch Tone to Speech sample application.
408393
# ttcalc
409-
set(ttcalc_SOURCES
410-
${ttcalc_SOURCES}
394+
list(APPEND ttcalc_SOURCES
411395
ttcalc.c
412396
ax25_pad.c
413397
fcs_calc.c
@@ -438,18 +422,3 @@ install(TARGETS kissutil DESTINATION bin)
438422
if(UDEV_FOUND)
439423
install(TARGETS cm108 DESTINATION bin)
440424
endif()
441-
442-
443-
444-
## TESTS
445-
# Note CMake will generate tests only if the enable_testing() command
446-
# has been invoked. The CTest module invokes the command automatically
447-
# when the BUILD_TESTING option is ON.
448-
include(CTest)
449-
if(BUILD_TESTING)
450-
# add_test(NAME <name> COMMAND <command> [<arg>...]
451-
# [CONFIGURATIONS <config>...]
452-
# [WORKING_DIRECTORY <dir>])
453-
454-
455-
endif()

0 commit comments

Comments
 (0)