From 4a9e94944c47c38c53967452efd83a7e4c2d4804 Mon Sep 17 00:00:00 2001 From: redfish Date: Mon, 29 Aug 2016 12:17:02 -0400 Subject: [PATCH] tests: cmake: use a list for enabled tests Avoid replicating common logic. --- tests/CMakeLists.txt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a3743d84c..9f546590c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -97,11 +97,17 @@ add_test( NAME hash-target COMMAND hash-target-tests) -# Skip the core_tests if we are running in Travis-CI because they will take too long -if (DEFINED ENV{TRAVIS}) - add_custom_target(tests DEPENDS difficulty hash performance_tests core_proxy unit_tests) -else () - add_custom_target(tests DEPENDS coretests difficulty hash performance_tests core_proxy unit_tests) -endif () +set(enabled_tests + difficulty + hash + performance_tests + core_proxy + unit_tests) + +# Skip the core_tests in Travis-CI because they will take too long +if (NOT DEFINED ENV{TRAVIS}) + list(APPEND enabled_tests coretests) +endif() +add_custom_target(tests DEPENDS enabled_tests) set_property(TARGET tests PROPERTY FOLDER "${folder}")