From: maier Date: Thu, 21 Nov 2013 01:22:06 +0000 (+0000) Subject: Testsuite: Bugfix: Fix a typo that prevented all tests under ./deal.II/tests from... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b5451fdde37ac8b200cd276aafb4f158ee7a518;p=dealii-svn.git Testsuite: Bugfix: Fix a typo that prevented all tests under ./deal.II/tests from being set up git-svn-id: https://svn.dealii.org/trunk@31743 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/setup_testsuite.cmake b/deal.II/cmake/setup_testsuite.cmake index a210f611c1..9dc9756a74 100644 --- a/deal.II/cmake/setup_testsuite.cmake +++ b/deal.II/cmake/setup_testsuite.cmake @@ -114,7 +114,7 @@ LIST(REMOVE_DUPLICATES _categories) # FOREACH(_category ${_categories}) - IF(EXISTS ${CMAKE_SOURCE_DIR}/${_category}/CMakeLists.txt) + IF(EXISTS ${CMAKE_SOURCE_DIR}/tests/${_category}/CMakeLists.txt) SET(_category_dir ${CMAKE_SOURCE_DIR}/tests/${_category}) ELSEIF(EXISTS ${TEST_DIR}/${_category}/CMakeLists.txt) SET(_category_dir ${TEST_DIR}/${_category})