diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-15 18:56:16 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-15 18:56:16 (GMT) |
commit | 7e5bc5fbc7bdeeefa37bccd5124978d6b3e20a24 (patch) | |
tree | 48e641af6e51c143f58872f9aec949c39922af21 /test/testvds_env.sh.in | |
parent | a62dc4271dd62eb7a211cbe84e2c0916c87af25a (diff) | |
download | hdf5-7e5bc5fbc7bdeeefa37bccd5124978d6b3e20a24.zip hdf5-7e5bc5fbc7bdeeefa37bccd5124978d6b3e20a24.tar.gz hdf5-7e5bc5fbc7bdeeefa37bccd5124978d6b3e20a24.tar.bz2 |
Fix test tmp dir usage
Diffstat (limited to 'test/testvds_env.sh.in')
-rw-r--r-- | test/testvds_env.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testvds_env.sh.in b/test/testvds_env.sh.in index 894e52e..e9a27da 100644 --- a/test/testvds_env.sh.in +++ b/test/testvds_env.sh.in @@ -19,7 +19,7 @@ nerrors=0 ############################################################################## ############################################################################## -### T H E T E S T S ### +### T H E T E S T S ### ############################################################################## ############################################################################## @@ -27,7 +27,7 @@ nerrors=0 echo "Testing basic virtual dataset I/O via H5Pset_vds_prefix(): all selection with ENV prefix" TEST_NAME=vds_env # The test name TEST_BIN=`pwd`/$TEST_NAME # The path of the test binary -ENVCMD="env HDF5_VDS_PREFIX=\${ORIGIN}/tmp" # Set the environment variable & value +ENVCMD="env HDF5_VDS_PREFIX=\${ORIGIN}/tmp_vds_env" # Set the environment variable & value UNENVCMD="unset HDF5_VDS_PREFIX" # Unset the environment variable & value # # Run the test @@ -37,8 +37,8 @@ exitcode=$? if [ $exitcode -eq 0 ]; then echo "Test prefix for HDF5_VDS_PREFIX PASSED" else - nerrors="`expr $nerrors + 1`" - echo "***Error encountered for HDF5_VDS_PREFIX test***" + nerrors="`expr $nerrors + 1`" + echo "***Error encountered for HDF5_VDS_PREFIX test***" fi $UNENVCMD exit $nerrors |