2020-02-08 21:27:32 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2020 University Corporation for Atmospheric
|
|
|
|
# Research/Unidata. See netcdf-c/COPYRIGHT file for more info.
|
|
|
|
|
|
|
|
# This shell runs some parallel HDF5 tests.
|
|
|
|
|
|
|
|
# Ed Hartnett
|
|
|
|
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
. ../test_common.sh
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "Testing parallel I/O with HDF5..."
|
|
|
|
|
2020-02-08 21:31:19 +08:00
|
|
|
@MPIEXEC@ -n 1 ./tst_h_par
|
|
|
|
@MPIEXEC@ -n 2 ./tst_h_par
|
|
|
|
@MPIEXEC@ -n 4 ./tst_h_par
|
2020-02-08 21:27:32 +08:00
|
|
|
echo "SUCCESS!!!"
|
|
|
|
|
2020-07-09 02:24:48 +08:00
|
|
|
echo "Testing parallel I/O with HDF5 and compression..."
|
|
|
|
@MPIEXEC@ -n 1 ./tst_h_par_compress
|
|
|
|
@MPIEXEC@ -n 2 ./tst_h_par_compress
|
|
|
|
@MPIEXEC@ -n 4 ./tst_h_par_compress
|
|
|
|
echo "SUCCESS!!!"
|
|
|
|
|
2020-02-08 21:27:32 +08:00
|
|
|
exit 0
|