File: run_f77_par_test.sh

package info (click to toggle)
netcdf-fortran 4.4.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,420 kB
  • ctags: 8,797
  • sloc: fortran: 51,087; f90: 20,357; sh: 11,601; ansic: 7,034; makefile: 548; pascal: 313; xml: 173
file content (12 lines) | stat: -rwxr-xr-x 226 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# This shell runs some parallel I/O tests for the F77 API.

set -e
echo "Testing netCDF parallel I/O through the F77 API..."

mpiexec -n 4 ./ftst_parallel
mpiexec -n 4 ./ftst_parallel_nasa

echo "SUCCESS!!!"
exit 0