diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-07-02 19:07:17 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-07-02 19:07:17 (GMT) |
commit | 072919b9d7fa341c1a886fb92841efa444f0ffae (patch) | |
tree | 923d02f3a1f8aebdbe5d7cd385e888f57b658931 /tools/testfiles/thlink-1.ddl | |
parent | b02d857a99888d795a148b84d951a73672f4b311 (diff) | |
download | hdf5-072919b9d7fa341c1a886fb92841efa444f0ffae.zip hdf5-072919b9d7fa341c1a886fb92841efa444f0ffae.tar.gz hdf5-072919b9d7fa341c1a886fb92841efa444f0ffae.tar.bz2 |
[svn-r8790] Purpose:
Description:
the original code that showed a name for HARDLINK was reassigning that name to a name
made in the dump traversal (made by concatenation by nested objects)
Solution:
removed this reassigmnet
now the name showed after HARDLINK is always the first name found for that object
(this object is printed once interely; subsequent printings show the word HARDLINK
and the first name )
Platforms tested:
linux
AIX
solaris
Misc. update:
Diffstat (limited to 'tools/testfiles/thlink-1.ddl')
-rw-r--r-- | tools/testfiles/thlink-1.ddl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testfiles/thlink-1.ddl b/tools/testfiles/thlink-1.ddl index fd9b0bd..4f50e80 100644 --- a/tools/testfiles/thlink-1.ddl +++ b/tools/testfiles/thlink-1.ddl @@ -12,16 +12,16 @@ GROUP "/" { } GROUP "g1" { DATASET "dset2" { - HARDLINK "/g2/dset1" + HARDLINK "/dset1" } GROUP "g1.1" { DATASET "dset3" { - HARDLINK "/g2/dset1" + HARDLINK "/dset1" } } } GROUP "g2" { - HARDLINK "/g2/g1/g1.1" + HARDLINK "/g1/g1.1" } } } |