From b2d4e9a641630da2968ee2e976a7dbea9d934162 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Tue, 26 Jul 2016 10:55:58 +0200 Subject: [PATCH] [cleanup][CMake] Skip on 77 is now the default for dune 3.0 --- cmake/modules/DumuxTestMacros.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmake/modules/DumuxTestMacros.cmake b/cmake/modules/DumuxTestMacros.cmake index 2d9ab4d8a4..4c9c8b2a97 100644 --- a/cmake/modules/DumuxTestMacros.cmake +++ b/cmake/modules/DumuxTestMacros.cmake @@ -54,8 +54,7 @@ macro(add_dumux_test dumux_test dumux_test_executable dumux_test_executable_sour else() dune_add_test(NAME ${dumux_test} TARGET ${dumux_test_executable} - COMMAND ${dumux_test_args} - SKIP_ON_77) + COMMAND ${dumux_test_args}) # tests always require the executable to run set_tests_properties(${dumux_test} PROPERTIES REQUIRED_FILES ${dumux_test_executable}) endif() -- GitLab