summaryrefslogtreecommitdiffstats
path: root/testpar/testpflush.sh.in
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-20 11:03:16 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-20 11:03:16 (GMT)
commitfe1a5b4279bbbf705c6d3b3886ffe2a963bd07ec (patch)
treea482951f2d94a0f3d4e85b65791f73c0493874af /testpar/testpflush.sh.in
parent34c0328c4d44a26916ebe0756ad5d74ac3c1dec8 (diff)
downloadhdf5-fe1a5b4279bbbf705c6d3b3886ffe2a963bd07ec.zip
hdf5-fe1a5b4279bbbf705c6d3b3886ffe2a963bd07ec.tar.gz
hdf5-fe1a5b4279bbbf705c6d3b3886ffe2a963bd07ec.tar.bz2
Added a shell script so we can run the parallel flush test
on OpenMPI.
Diffstat (limited to 'testpar/testpflush.sh.in')
-rw-r--r--testpar/testpflush.sh.in47
1 files changed, 47 insertions, 0 deletions
diff --git a/testpar/testpflush.sh.in b/testpar/testpflush.sh.in
new file mode 100644
index 0000000..e1eb1ef
--- /dev/null
+++ b/testpar/testpflush.sh.in
@@ -0,0 +1,47 @@
+#! /bin/sh
+#
+# Copyright by The HDF Group.
+# Copyright by the Board of Trustees of the University of Illinois.
+# All rights reserved.
+#
+# This file is part of HDF5. The full HDF5 copyright notice, including
+# terms governing use, modification, and redistribution, is contained in
+# the COPYING file, which can be found at the root of the source code
+# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
+# If you do not have access to either file, you may request a copy from
+# help@hdfgroup.org.
+#
+#
+# Test script for the parallel flush test
+#
+# The parallel flush test uses two programs to test flush operations
+# in parallel HDF5. The first program purposely exits without calling
+# MPI_Finalize(), which is an error under the MPI standard and mpiexec
+# in some implementations will return an error code even though all
+# processes exit successfully. This script lets us swallow the error
+# from the first program.
+#
+# True errors in the first program will be detected as errors in the
+# second program, so watch out for that.
+#
+# Programmer: Dana Robinson
+# Fall 2018
+
+# The build (current) directory might be different than the source directory.
+if test -z "$srcdir"; then
+ srcdir=.
+fi
+
+# ==========================================
+# Run the first parallel flush test program
+# (note that we ignore any errors here)
+# ==========================================
+@RUNPARALLELSCRIPT@ ./t_pflush1
+
+# ===========================================
+# Run the second parallel flush test program
+# The return code of this call is the return
+# code of the script.
+# ===========================================
+@RUNPARALLELSCRIPT@ ./t_pflush2
+