diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-02-15 01:10:59 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-02-15 01:11:20 (GMT) |
commit | eadc7752609b383f8444bd3b20b31a2b3416e428 (patch) | |
tree | 0352b43e8eb0bd274c2e3ca3f51f30d7ccf8655c /bin/batch/ctestP.lsf.in.cmake | |
parent | d6036ce89fe0a284bd1e6486fc6a50e932dd1e2f (diff) | |
download | hdf5-eadc7752609b383f8444bd3b20b31a2b3416e428.zip hdf5-eadc7752609b383f8444bd3b20b31a2b3416e428.tar.gz hdf5-eadc7752609b383f8444bd3b20b31a2b3416e428.tar.bz2 |
TRILABS-111 Add missing batch scripts
Diffstat (limited to 'bin/batch/ctestP.lsf.in.cmake')
-rw-r--r-- | bin/batch/ctestP.lsf.in.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/batch/ctestP.lsf.in.cmake b/bin/batch/ctestP.lsf.in.cmake new file mode 100644 index 0000000..2777f39 --- /dev/null +++ b/bin/batch/ctestP.lsf.in.cmake @@ -0,0 +1,19 @@ +#!/bin/tcsh +### LSF syntax +#BSUB -nnodes 1 #number of nodes +#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' -E t_cache_image -C Release -T test >& ctestP.out + +echo "Done running ctest parallel command." |