mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
bae744199b
Add script raybsub to handle submitting .lsf files on ray with bsub < script.lsf syntax that we couldn't handle with CMake. Add hpc-cmake-tgz option for bin/release.
18 lines
419 B
CMake
18 lines
419 B
CMake
#!/bin/bash
|
|
|
|
#SBATCH -C knl,quad,cache
|
|
#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@
|
|
CMD="ctest . -R TEST_PAR|PH5DIFF|PERFORM|ph5example -E t_cache_image -C Release -T test"
|
|
|
|
echo "Run $CMD. Test output will be in build/ctestP.out"
|
|
$CMD >& ctestP.out
|
|
echo "Done running $CMD"
|
|
|