@@ -267,32 +267,37 @@ if test "${MPIRUN_MODE}" != "none"; then
267
267
;;
268
268
esac
269
269
run_example " ${exec} " ./examples/hello_c
270
+ run_example ./examples/hello_c " "
270
271
run_example " ${exec} " ./examples/ring_c
271
272
run_example " ${exec} " ./examples/connectivity_c
272
273
if ompi_info --parsable | grep -q bindings:cxx:yes > /dev/null; then
273
274
echo " --> running C++ examples"
274
275
run_example " ${exec} " ./examples/hello_cxx
276
+ run_example ./examples/hello_cxx " "
275
277
run_example " ${exec} " ./examples/ring_cxx
276
278
else
277
279
echo " --> skipping C++ examples"
278
280
fi
279
281
if ompi_info --parsable | grep -q bindings:mpif.h:yes > /dev/null; then
280
282
echo " --> running mpif examples"
281
283
run_example " ${exec} " ./examples/hello_mpifh
284
+ run_example ./examples/hello_mpifh " "
282
285
run_example " ${exec} " ./examples/ring_mpifh
283
286
else
284
287
echo " --> skipping mpif examples"
285
288
fi
286
289
if ompi_info --parsable | egrep -q bindings:use_mpi:\"\? yes > /dev/null; then
287
290
echo " --> running usempi examples"
288
291
run_example " ${exec} " ./examples/hello_usempi
292
+ run_example ./examples/hello_usempi " "
289
293
run_example " ${exec} " ./examples/ring_usempi
290
294
else
291
295
echo " --> skipping usempi examples"
292
296
fi
293
297
if ompi_info --parsable | grep -q bindings:use_mpi_f08:yes > /dev/null; then
294
298
echo " --> running usempif08 examples"
295
299
run_example " ${exec} " ./examples/hello_usempif08
300
+ run_example ./examples/hello_usempif08 " "
296
301
run_example " ${exec} " ./examples/ring_usempif08
297
302
else
298
303
echo " --> skipping usempif08 examples"
0 commit comments