summaryrefslogtreecommitdiffstats
path: root/test/supervise.subr
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-03-23 13:48:05 (GMT)
committerGitHub <noreply@github.com>2022-03-23 13:48:05 (GMT)
commitfbb532cd633e216f47ce846493b38af02cfbb43a (patch)
tree1ef7bc9f25ec0832f8b25bb8ea4be34d53bd144d /test/supervise.subr
parent78375882485a99a81caa933928ed08d7a38ef88b (diff)
downloadhdf5-fbb532cd633e216f47ce846493b38af02cfbb43a.zip
hdf5-fbb532cd633e216f47ce846493b38af02cfbb43a.tar.gz
hdf5-fbb532cd633e216f47ce846493b38af02cfbb43a.tar.bz2
VFD SWMR: Normalization with develop (#1506)
* Brought over plugin and test script changes * Removes remaining register keywords (#1481) * Fixed warnings in the aux process code * Minor fixes from develop * Minor changes from develop, fixed format warnings * Formatted source * Added HD prefix to timespec_get * Cleanup in new files * Removes the MANIFEST file and unused release files (#1497) * Removes the MANIFEST file and unused release files * Updated tar command * checkposix corrections * More checkposix fixes * Ripped out unused instrumentation functionality * Brought over cache tagging changes from develop * Changes to tagged metadata expulsion iteration * Fixed typo * Brought over H5O__free() changes from develop * Brings (unused) parallel page buffer test in line with develop * Moved the functionality in supervise.subr to test_vfd_swmr.sh * Tools VFD parameter updates * Committing clang-format changes * H5F VFD SWMR refactoring * Committing clang-format changes * Misc changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test/supervise.subr')
-rw-r--r--test/supervise.subr42
1 files changed, 0 insertions, 42 deletions
diff --git a/test/supervise.subr b/test/supervise.subr
deleted file mode 100644
index 8fc526a..0000000
--- a/test/supervise.subr
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/us/bin/env bash
-#
-# Copyright by Akadio, Inc.
-#
-# 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://www.hdfgroup.org/licenses.
-# If you do not have access to either file, you may request a copy from
-# help@hdfgroup.org.
-#
-# Tests for the vfd swmr feature.
-
-# catch_out_err_and_rc outbase command [arguments]
-#
-# Run `command` with any `arguments` provided. Redirect `command`'s
-# stderr and stdout to the file `outbase.out`. Record the result code
-# of `command` in `outbase.rc`.
-#
-catch_out_err_and_rc()
-{
- if [ $# -lt 2 ]; then
- echo "usage: catch_output_and_rc outbase command [arguments]" \
- 1>&2
- exit 1
- fi
- outbase=$1
- shift
- {
- "$@" < ${STDIN_PATH:-/dev/stdin} > ${STDOUT_PATH:-/dev/stdout} &
- echo $! > ${outbase}.pid
- wait $(cat ${outbase}.pid)
- echo $? > ${outbase}.rc
- } 2>&1 | tee ${outbase}.out
-}
-
-#catch_out_err_and_rc xxlsxx ls smiles &
-
-#wait
-#echo result=$(cat xxlsxx.rc)
-
-#exit 0