From: Matthias Maier Date: Sat, 28 Sep 2013 08:56:33 +0000 (+0000) Subject: Epic Bugfix: Omit "=" in target names so that Unix Makefiles actually run an mpi... X-Git-Tag: v8.1.0~570^2~169 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4dd238779f60a9472fb6d6d65909ae47dc8ff17;p=dealii.git Epic Bugfix: Omit "=" in target names so that Unix Makefiles actually run an mpi test... git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30994 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/cmake/macros/macro_add_test.cmake b/tests/cmake/macros/macro_add_test.cmake index 8342825aea..3bd9ab3f4b 100644 --- a/tests/cmake/macros/macro_add_test.cmake +++ b/tests/cmake/macros/macro_add_test.cmake @@ -87,7 +87,7 @@ MACRO(DEAL_II_ADD_TEST _category _test_name _comparison_file _n_cpu) SET(_run_command ${_target}) # the command to issue SET(_n_cpu 1) # set it to one, we'll still occupy one processor to run a test ;-) ELSE() - SET(_diff_target ${_category}-${_test_name}.mpirun=${_n_cpu}.${_build_lowercase}.diff) # diff target name + SET(_diff_target ${_category}-${_test_name}.mpirun${_n_cpu}.${_build_lowercase}.diff) # diff target name SET(_test_full ${_category}/${_test_name}.mpirun=${_n_cpu}.${_build_lowercase}) # full test name SET(_test_directory ${CMAKE_CURRENT_BINARY_DIR}/${_test_short}/mpirun=${_n_cpu}) # directory to run the test in SET(_run_command mpirun -np ${_n_cpu} ${CMAKE_CURRENT_BINARY_DIR}/${_test_short}/${_target}) # the command to issue