2018-11-15 01:19:28 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-02-04 22:46:57 +08:00
|
|
|
#SBATCH -p knl -C quad,cache
|
2018-11-15 01:19:28 +08:00
|
|
|
#SBATCH --nodes=1
|
|
|
|
#SBATCH -t 00:30:00
|
|
|
|
#SBATCH --mail-type=BEGIN,END,FAIL
|
|
|
|
##SBATCH --mail-user=<username>@sandia.gov
|
|
|
|
#SBATCH --export=ALL
|
2019-05-07 05:38:38 +08:00
|
|
|
#SBATCH --job-name=h5_ctestP
|
2018-11-15 01:19:28 +08:00
|
|
|
|
2019-01-05 21:49:19 +08:00
|
|
|
cd @HDF5_BINARY_DIR@
|
2022-11-03 00:02:47 +08:00
|
|
|
echo "Run parallel test command. Test output will be in build/ctestP.out"
|
|
|
|
ctest -S ctest_parallel.cmake >& ctestP.out
|
2018-11-15 01:19:28 +08:00
|
|
|
|
2022-11-03 00:02:47 +08:00
|
|
|
echo "Done running ctest parallel command."
|
|
|
|
touch ctestP.done
|