-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.sh
executable file
·36 lines (31 loc) · 928 Bytes
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
#
# Copyright (C) 2023, Northwestern University
# See COPYRIGHT notice in top-level directory.
#
# Exit immediately if a command exits with a non-zero status.
set -e
MPIRUN="mpiexec ${MPIRUN_OPTS} -n 4"
for f in ${check_PROGRAMS} ; do
if test "$f" = "print_mpi_io_hints" ; then
OPTS="testfile"
elif test "$f" = "indexed_fsize" ; then
OPTS="-f testfile"
elif test "$f" = "hindexed_fsize" ; then
OPTS="-f testfile"
elif test "$f" = "struct_fsize" ; then
OPTS="-f testfile"
elif test "$f" = "nvars" ; then
OPTS="-r -f testfile"
fi
CMD="${MPIRUN} ./$f ${OPTS}"
echo "==========================================================="
echo " Parallel testing on 4 MPI processes"
echo ""
echo " $CMD"
echo ""
${CMD}
echo "==========================================================="
done
# delete output file
rm -f ./testfile