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.
17 lines
528 B
17 lines
528 B
#!/bin/tcsh
|
|
### LSF syntax
|
|
#BSUB -nnodes 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 -S ctest_serial.cmake >& ctestS.out
|
|
|
|
echo "Done running command."
|
|
touch ctestS.done
|
|
|