#!/bin/tcsh ### LSF syntax #BSUB -nnodes 1 #number of nodes #BSUB -W 30 #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 date; hostname echo -n 'JobID is '; echo $LSB_JOBID cmake --version ctest --version #cd build/ctest/hdfbld cd /usr/workspace/wsb/knox8/pve-sierra/develop2/build/ctest/hdfbld ctest . -C Release -j 16 -T test #jsrun -n1 -rn $CMD echo 'Done. Test output is in ctestSoutput.txt, errors in ctestSerrors.txt'