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/tloop-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/tloop-1.ddl')
-rw-r--r-- | tools/testfiles/tloop-1.ddl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testfiles/tloop-1.ddl b/tools/testfiles/tloop-1.ddl index c3d842a..8313887 100644 --- a/tools/testfiles/tloop-1.ddl +++ b/tools/testfiles/tloop-1.ddl @@ -6,12 +6,12 @@ GROUP "/" { GROUP "g1" { GROUP "g1.1" { GROUP "g2.1" { - HARDLINK "/g2/g1" + HARDLINK "/g1" } } } GROUP "g2" { - HARDLINK "/g2/g1/g1.1" + HARDLINK "/g1/g1.1" } } } |