summaryrefslogtreecommitdiffstats
path: root/bin/batch/ray_ctestP.lsf.in.cmake
blob: 6b5316a55db4791ad47dde13581deda5e3e0aad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/tcsh
### LSF syntax
#BSUB -n 6                       #number of nodes
#BSUB -R "span[ptile=6]"
#BSUB -W 30                      #walltime in minutes
#BSUB -G guests                  #account
#BSUB -e ctestPerrors.txt        #stderr
#BSUB -o ctestPoutput.txt        #stdout
#BSUB -J hdf5_ctestP             #job
##BSUB -q pbatch                 #queue to use
#BSUB -q pdebug

##date; hostname
##echo -n 'JobID is '; echo $LSB_JOBID

cd @HDF5_BINARY_DIR@
echo "Run parallel test command. Test output will be in build/ctestP.out"
ctest . -R 'TEST_PAR|PH5DIFF|PERFORM|ph5example' -E t_cache_image -C Release -T test >& ctestP.out

echo "Done running ctest parallel command."