You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
351 B
16 lines
351 B
2 years ago
|
#!/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_ctestS
|
||
|
|
||
|
cd @HDF5_BINARY_DIR@
|
||
|
echo "Run command. Test output will be in build/ctestS.out"
|
||
|
ctest -S ctest_serial.cmake >& ctestS.out
|
||
|
|
||
|
echo "Done running command."
|
||
|
touch ctestS.done
|