summaryrefslogtreecommitdiffstats
path: root/bin/batch/ctestS.lsf.in.cmake
blob: 73b17c0dc1650498f389be5e1769caf3ae4545b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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