diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2010-01-26 00:20:16 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2010-01-26 00:20:16 (GMT) |
commit | 98639557acba114818e12f0c0954fabb94a61eeb (patch) | |
tree | 013fade934be9ab849f2f695e8e0d2ed15b8f73f /tools/lib | |
parent | 985a261886871d960213f3868520ab3583b8dafa (diff) | |
download | hdf5-98639557acba114818e12f0c0954fabb94a61eeb.zip hdf5-98639557acba114818e12f0c0954fabb94a61eeb.tar.gz hdf5-98639557acba114818e12f0c0954fabb94a61eeb.tar.bz2 |
[svn-r18166] Purpose:
Take care of test case fail for h5repack from checkin (r18164)
Description:
Previous checkin didn't allow h5diff to return succeed when a link's
target object doesn't exist. Changed it to succeed with warning.
(Need to discuss related feature)
Tested on Jam
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5diff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index 1615b8c..4b7b796 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -278,8 +278,7 @@ static int H5tools_get_softlink_target_info(hid_t file_id, const char * linkpath } else { - parallel_print("error: \"%s\" doesn't exist \n", s_trg_info->path); - goto out; + parallel_print("warn: link target \"%s\" doesn't exist \n", s_trg_info->path); } /* set target obj type to return */ |