From 90801543ed5e3ae18cfc9765acb9ebe8fe86fc11 Mon Sep 17 00:00:00 2001 From: maier Date: Sat, 28 Sep 2013 15:23:33 +0000 Subject: [PATCH] Be a bit more agressive with the mpi tests git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31001 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/cmake/macros/macro_add_test.cmake | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/cmake/macros/macro_add_test.cmake b/tests/cmake/macros/macro_add_test.cmake index 1a5ebd515c..a12bb0f8ed 100644 --- a/tests/cmake/macros/macro_add_test.cmake +++ b/tests/cmake/macros/macro_add_test.cmake @@ -82,10 +82,11 @@ MACRO(DEAL_II_ADD_TEST _category _test_name _comparison_file _n_cpu) IF("${_n_cpu}" STREQUAL "0") SET(_target ${_test_name}.${_build_lowercase}) # the target name for the executable SET(_run_command) # the first part of the command to issue - SET(_n_cpu 1) # set it to one, we'll still occupy one processor to run a test ;-) + SET(_processors 1) ELSE() SET(_target ${_test_name}.mpirun=${_n_cpu}.${_build_lowercase}) # the target name for the executable SET(_run_command mpirun -np ${_n_cpu}) # the first part of the command to issue + SET(_processors 2) # heuristically... ENDIF() SET(_test_full ${_category}/${_target}) # full test name @@ -186,7 +187,7 @@ MACRO(DEAL_II_ADD_TEST _category _test_name _comparison_file _n_cpu) SET_TESTS_PROPERTIES(${_test_full} PROPERTIES LABEL "${_category}" TIMEOUT ${TEST_TIME_LIMIT} - PROCESSORS ${_n_cpu} # 0 was changed to 1 above. + PROCESSORS ${_processors} ) ENDIF() ENDFOREACH() -- 2.39.5