summaryrefslogtreecommitdiffstats
path: root/bin/batch/ray_ctestP.lsf.in.cmake
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2019-01-26 22:44:09 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2019-01-26 22:44:09 (GMT)
commitb91cb20c697ae58ca791ae3e1e191d59dc531039 (patch)
treeb3c75cc68d37573912a1e58a97248cf01dcb38fa /bin/batch/ray_ctestP.lsf.in.cmake
parentf0e2fc6c62943887944e9a1e5ca732d5f6a71b6e (diff)
downloadhdf5-b91cb20c697ae58ca791ae3e1e191d59dc531039.zip
hdf5-b91cb20c697ae58ca791ae3e1e191d59dc531039.tar.gz
hdf5-b91cb20c697ae58ca791ae3e1e191d59dc531039.tar.bz2
Add batch files with batch parameters specific to cori and ray.
Release.txt entry for skipping long double dt_arith tests on ppc64.
Diffstat (limited to 'bin/batch/ray_ctestP.lsf.in.cmake')
-rw-r--r--bin/batch/ray_ctestP.lsf.in.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/bin/batch/ray_ctestP.lsf.in.cmake b/bin/batch/ray_ctestP.lsf.in.cmake
new file mode 100644
index 0000000..6b5316a
--- /dev/null
+++ b/bin/batch/ray_ctestP.lsf.in.cmake
@@ -0,0 +1,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."