From: Matthias Maier Date: Mon, 26 Dec 2022 03:45:01 +0000 (-0600) Subject: CMake: remove old prm-test workarounds X-Git-Tag: v9.5.0-rc1~706^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e047ac3c453be339f131bfc5c482c8c5234ee79;p=dealii.git CMake: remove old prm-test workarounds --- diff --git a/tests/a-framework/CMakeLists.txt b/tests/a-framework/CMakeLists.txt index dd839da7a0..f515a9f317 100644 --- a/tests/a-framework/CMakeLists.txt +++ b/tests/a-framework/CMakeLists.txt @@ -2,26 +2,11 @@ cmake_minimum_required(VERSION 3.3.0) include(../setup_testsubproject.cmake) project(testsuite CXX) -add_executable(dummy.release dummy.cc) -add_executable(dummy.debug dummy.cc) -set(TEST_TARGET_RELEASE dummy.release) -set(TEST_TARGET_DEBUG dummy.debug) +add_executable(dummy dummy.cc) +set(TEST_TARGET dummy) deal_ii_pickup_tests() -# -# Limit concurrency between the two parameter file tests. -# -foreach(_build ${DEAL_II_BUILD_TYPES}) - string(TOLOWER ${_build} _build) - if(TARGET parameter_file_2.${_build}.diff AND - TARGET parameter_file_1.${_build}.diff ) - set_tests_properties(a-framework/parameter_file_2.${_build} PROPERTIES - DEPENDS a-framework/parameter_file_1.${_build} - ) - endif() -endforeach() - # # And a configure test: