#!/bin/tcsh ### LSF syntax #BSUB -n 1 #number of nodes #BSUB -W 59 #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 #setenv $PATH /g/g13/knox8/ray/bin:$PATH #module load cmake/3.12.1 #module load python/3.6.4 #module load xl cmake --version ctest --version #cd build/ctest/hdfbld cd /usr/workspace/wsb/knox8/pve-sierra/develop2/build/ctest/hdfbld ctest . -C Release -j 32 -T test #jsrun -n1 -rn $CMD echo 'Done. Test output is in ctestSoutput.txt, errors in ctestSerrors.txt'