diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-04-30 16:25:09 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-04-30 21:02:45 -0400 |
commit | adc8598dcb19ac70c588b6298418df7b7c274bc2 (patch) | |
tree | 6fdb80981688d9ef1bb53e3696bb383a89135c88 /tests/gdinterpolatedscale | |
parent | ef9b000d39e2c1092ec4d98ce135eff385c05f4b (diff) | |
download | libgd-adc8598dcb19ac70c588b6298418df7b7c274bc2.tar.gz |
tests: unify cmake test code into a single macro
This makes the test code a lot easier to manage rather than copying &
pasting the same boiler plate multiple times.
Also take the opportunity to add a common prefix to each test name so
we don't get collisions between subdirs if a test happens to use the
same exact name.
Diffstat (limited to 'tests/gdinterpolatedscale')
-rw-r--r-- | tests/gdinterpolatedscale/CMakeLists.txt | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/gdinterpolatedscale/CMakeLists.txt b/tests/gdinterpolatedscale/CMakeLists.txt index 5e78000..296e3f1 100644 --- a/tests/gdinterpolatedscale/CMakeLists.txt +++ b/tests/gdinterpolatedscale/CMakeLists.txt @@ -1,10 +1,6 @@ - SET(TESTS_FILES gdModesAndPalettes gdTrivialResize ) -FOREACH(test_name ${TESTS_FILES}) - add_executable(${test_name} "${test_name}.c") - target_link_libraries (${test_name} gdTest) - add_test(NAME ${test_name} COMMAND ${test_name}) -ENDFOREACH(test_name) + +ADD_GD_TESTS() |