summaryrefslogtreecommitdiffstats
path: root/bin/batch/sbatch_ctestS.sl
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2018-11-14 17:19:28 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2018-11-14 17:19:28 (GMT)
commit6cbd463d411ebbd621adfb92034c434d41d9a58a (patch)
treeae7f70f0dd426e1c3a861754406ac1062f93e06d /bin/batch/sbatch_ctestS.sl
parentf515574dcfdb9be2c5b788e472833da47a8105a7 (diff)
downloadhdf5-6cbd463d411ebbd621adfb92034c434d41d9a58a.zip
hdf5-6cbd463d411ebbd621adfb92034c434d41d9a58a.tar.gz
hdf5-6cbd463d411ebbd621adfb92034c434d41d9a58a.tar.bz2
Add script and changes to wait for H5Tinit.c
Add more sample batch scripts, specifically for sbatch, not for knl cross compile. Don't run parallel tests when no parallel test script is configured in HDF5options.cmake.
Diffstat (limited to 'bin/batch/sbatch_ctestS.sl')
-rw-r--r--bin/batch/sbatch_ctestS.sl16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/batch/sbatch_ctestS.sl b/bin/batch/sbatch_ctestS.sl
new file mode 100644
index 0000000..a103356
--- /dev/null
+++ b/bin/batch/sbatch_ctestS.sl
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+#SBATCH --nodes=1
+#SBATCH -t 00:30:00
+#SBATCH --mail-type=BEGIN,END,FAIL
+##SBATCH --mail-user=<username>@sandia.gov
+#SBATCH --export=ALL
+#SBATCH --job-name=h5_ctestS
+
+
+cd build
+CMD="ctest . -E TEST_PAR|H5DIFF|PERFORM -C Release -j 32 -T test"
+
+echo "Run $CMD. Test output will be in build/ctestS.out"
+$CMD >& ctestS.out
+echo "Done running $CMD"