mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-05 16:20:10 +08:00
13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/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
|