reserved for *ctestP.sl.cmake. Revise options to run batch tests and alternative options for cross compile in HPC/*-HDF5options.cmake.
19 lines
579 B
CMake
19 lines
579 B
CMake
#!/bin/tcsh
|
|
### LSF syntax
|
|
#BSUB -n 1 #number of nodes
|
|
#BSUB -W 29 #walltime in minutes
|
|
#BSUB -G guests #account
|
|
#BSUB -e ctestSerrors.txt #stderr
|
|
#BSUB -o ctestSoutput.txt #stdout
|
|
#BSUB -J hdf5_ctestS #job
|
|
##BSUB -q pbatch #queue to use
|
|
#BSUB -q pdebug
|
|
|
|
cd @HDF5_BINARY_DIR@
|
|
echo "Run command. Test output will be in build/ctestS.out"
|
|
ctest . -E 'TEST_PAR|PH5DIFF|PERFORM|ph5example' -C Release -j 32 -T test >& ctestS.out
|
|
|
|
##$CMD >& ctestS.out
|
|
echo "Done running command."
|
|
|