1#!/bin/tcsh
2### LSF syntax
3#BSUB -n 6                       #number of nodes
4#BSUB -R "span[ptile=6]"
5#BSUB -W 30                      #walltime in minutes
6#BSUB -G guests                  #account
7#BSUB -e ctestPerrors.txt        #stderr
8#BSUB -o ctestPoutput.txt        #stdout
9#BSUB -J hdf5_ctestP             #job
10##BSUB -q pbatch                 #queue to use
11#BSUB -q pdebug
12
13##date; hostname
14##echo -n 'JobID is '; echo $LSB_JOBID
15
16cd @HDF5_BINARY_DIR@
17echo "Run parallel test command. Test output will be in build/ctestP.out"
18ctest . -R 'MPI_TEST_' -C Release -T test >& ctestP.out
19
20echo "Done running ctest parallel command."
21