mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
15 lines
287 B
CMake
15 lines
287 B
CMake
#!/bin/bash
|
|
|
|
#SBATCH --nodes=1
|
|
#SBATCH -t 00:30:00
|
|
#SBATCH --mail-type=BEGIN,END,FAIL
|
|
##SBATCH --mail-user=<username>@sandia.gov
|
|
#SBATCH --export=ALL
|
|
#SBATCH --job-name=h5_ctestP
|
|
|
|
cd @HDF5_BINARY_DIR@
|
|
ctest . -R MPI_TEST_ -C Release -T test >& ctestP.out
|
|
|
|
echo "Done running ctestP.sl"
|
|
|