summaryrefslogtreecommitdiffstats
path: root/test/test_usecases.sh.in
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-12-11 02:19:04 (GMT)
committerGitHub <noreply@github.com>2021-12-11 02:19:04 (GMT)
commit290b52f1b840e4945cf12508bd4832c5750695d8 (patch)
treee05a7f47180d69c75bdd3e572e7469d8b6335693 /test/test_usecases.sh.in
parent206e1dacfe4094b47c2a9e74982450a308fd08c5 (diff)
downloadhdf5-290b52f1b840e4945cf12508bd4832c5750695d8.zip
hdf5-290b52f1b840e4945cf12508bd4832c5750695d8.tar.gz
hdf5-290b52f1b840e4945cf12508bd4832c5750695d8.tar.bz2
Merge Fix directory variable in shell scripts #1273 (#1278)
Diffstat (limited to 'test/test_usecases.sh.in')
-rw-r--r--test/test_usecases.sh.in23
1 files changed, 4 insertions, 19 deletions
diff --git a/test/test_usecases.sh.in b/test/test_usecases.sh.in
index 3f7d5f1..fd30afd 100644
--- a/test/test_usecases.sh.in
+++ b/test/test_usecases.sh.in
@@ -35,27 +35,12 @@ verbose=yes
## Main
###############################################################################
srcdir=@srcdir@
-bindir=@bindir@
-testdir=@testdir@
-
-# The build (current) directory might be different than the source directory.
-if test -z "$srcdir"; then
- srcdir=.
-fi
-
-# If the bindir directory is not set just use current (.).
-if test -z "$bindir"; then
- bindir=.
-fi
-
-# If the testdir directory is not set just use current (.).
-if test -z "$testdir"; then
- testdir=.
-fi
+utils_testdir=@abs_top_builddir@/@H5_UTILS_TEST_BUILDDIR@
+testdir=@abs_top_builddir@/@H5_TEST_BUILDDIR@
# Check to see if the VFD specified by the HDF5_DRIVER environment variable
# supports SWMR.
-$bindir/swmr_check_compat_vfd
+$utils_testdir/swmr_check_compat_vfd
rc=$?
if [[ $rc != 0 ]] ; then
echo
@@ -143,7 +128,7 @@ TOOLTEST() {
# the test. Running each of these tests in its own directory should eliminate
# the problem.
mkdir usecases_test
-cp $bindir/twriteorder usecases_test
+cp $testdir/twriteorder usecases_test
for FILE in use_*; do
case "$FILE" in
*.o) continue ;; ## don't copy the .o files