diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2010-11-17 22:11:02 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2010-11-17 22:11:02 (GMT) |
commit | 4810a3d3190603448697cdaa91ed5dc666b22df9 (patch) | |
tree | 893e31f7e54a745a88f3705a246352364ce325b9 /test | |
parent | d54a8334e1e66aa0e231db456a084870afe4aa9a (diff) | |
download | hdf5-4810a3d3190603448697cdaa91ed5dc666b22df9.zip hdf5-4810a3d3190603448697cdaa91ed5dc666b22df9.tar.gz hdf5-4810a3d3190603448697cdaa91ed5dc666b22df9.tar.bz2 |
[svn-r19813] 1. Correct mistake for previous checkin rev #19781:
file name listed for DISTCLEANFILES should be testlinks_env.sh
2. Add comments to test_4() in test/external.c about the link name "/ link".
3. Fix memory leak as reported by valgrind in src/H5Lexternal.c:
free memory pointed to by tmp_env_prefix for HDF5_EXT_PREFIX case.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/external.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 6993a35..06c56f8 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -134,6 +134,6 @@ testhdf5_SOURCES=testhdf5.c tarray.c tattr.c tchecksum.c tconfig.c tfile.c \ tvlstr.c tvltypes.c # Temporary files. -DISTCLEANFILES=testerror.sh testlibinfo.sh testcheck_version.sh testlinks.sh +DISTCLEANFILES=testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh include $(top_srcdir)/config/conclude.am diff --git a/test/external.c b/test/external.c index 7fd344e..3e1388c 100644 --- a/test/external.c +++ b/test/external.c @@ -879,7 +879,7 @@ test_4 (hid_t fapl) if((fid = H5Fopen(filename, H5F_ACC_RDONLY, fapl)) < 0) goto error; - /* Open the external link */ + /* Open the external link which is "/ link" as created previously via H5Lcreate_external() */ if((xid = H5Gopen2(fid, "/ link", H5P_DEFAULT)) < 0) goto error; |