Skip to content
Snippets Groups Projects
Commit ab5aef3b authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Use different wrappers for MPI and non-MPI parts of tests.

parent fa6ee4d7
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ if [ @ENABLE_GRIB@ = yes ]; then
suffix="${suffix-grb}"
exec 5>&1 6>&2 >"$LOG" 2>&1
../libtool --mode=execute @MPI_LAUNCH@ -n ${mpi_task_num} \
${tool_wrap} ./pio_write_deco2d ${pio_write_args}
${tool_wrap_mpi} ./pio_write_deco2d ${pio_write_args}
exec 2>&6 1>&5 5>&- 6>&-
../libtool --mode=execute \
${tool_wrap} ./cksum_read example_0.${suffix} example_0.cksum
......
......@@ -16,7 +16,8 @@ for variation in "" $variations ; do
exec 5>&1 6>&2 >"$LOG" 2>&1
../libtool --mode=execute \
@MPI_LAUNCH@ \
-n ${mpi_task_num} ${tool_wrap} ./pio_write ${pio_write_args} ${variation}
-n ${mpi_task_num} ${tool_wrap_mpi} \
./pio_write ${pio_write_args} ${variation}
exec 2>&6 1>&5 5>&- 6>&-
../libtool --mode=execute \
${tool_wrap} ./cksum_read example_0.${suffix} example_0.cksum
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment