diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-08-01 17:20:21 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-08-01 17:20:21 (GMT) |
commit | 4ce65b85850fd7bd28c36b25619d025611afacce (patch) | |
tree | 830fa0927264338ee1b7c8c4f1bcb9f2275b99c0 /tools/h5ls | |
parent | db7a701126c28cb1505be730b215f9a33ab61332 (diff) | |
download | hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.zip hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.tar.gz hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.tar.bz2 |
[svn-r30235] HDFFV-9730: Fix functions for delete to use a specific dir instead of a possibly uninitialized variable.
Diffstat (limited to 'tools/h5ls')
-rw-r--r-- | tools/h5ls/testh5ls.sh.in | 2 | ||||
-rw-r--r-- | tools/h5ls/testh5lsvds.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5ls/testh5ls.sh.in b/tools/h5ls/testh5ls.sh.in index 73d7a46..e72c875 100644 --- a/tools/h5ls/testh5ls.sh.in +++ b/tools/h5ls/testh5ls.sh.in @@ -197,7 +197,7 @@ CLEAN_TESTFILES_AND_TESTDIR() # skip rm if srcdir is same as destdir # this occurs when build/test performed in source dir and # make cp fail - SDIR=`$DIRNAME $tstfile` + SDIR=$SRC_H5LS_TESTFILES INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then diff --git a/tools/h5ls/testh5lsvds.sh.in b/tools/h5ls/testh5lsvds.sh.in index d194992..47a48e3 100644 --- a/tools/h5ls/testh5lsvds.sh.in +++ b/tools/h5ls/testh5lsvds.sh.in @@ -148,7 +148,7 @@ CLEAN_TESTFILES_AND_TESTDIR() # skip rm if srcdir is same as destdir # this occurs when build/test performed in source dir and # make cp fail - SDIR=`$DIRNAME $tstfile` + SDIR=$SRC_H5LS_TESTFILES/vds INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then |