diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-07 19:55:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-07 19:55:43 (GMT) |
commit | d8626dd40f82baf616134cfd179b894429fce501 (patch) | |
tree | 758ac46ad577c30b3a25df9345d4b7ee219af74e /test/tgenprop.c | |
parent | dd0ecaa64343411cc7538e891cf1d26be53d0528 (diff) | |
download | hdf5-d8626dd40f82baf616134cfd179b894429fce501.zip hdf5-d8626dd40f82baf616134cfd179b894429fce501.tar.gz hdf5-d8626dd40f82baf616134cfd179b894429fce501.tar.bz2 |
[svn-r4920] Purpose:
Bug fix
Description:
Correct inefficient property copying when using derived property list
classes.
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'test/tgenprop.c')
-rw-r--r-- | test/tgenprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tgenprop.c b/test/tgenprop.c index 71ab27a..4f97322 100644 --- a/test/tgenprop.c +++ b/test/tgenprop.c @@ -1307,7 +1307,7 @@ test_genprop_class_addprop(void) /* Check existence of an original property */ ret = H5Pexist(cid,H5D_CRT_DATA_PIPELINE_NAME); - VERIFY(ret, 1, "H5Pexist"); + VERIFY(ret, 0, "H5Pexist"); /* Insert first property into class (with no callbacks) */ ret = H5Pregister(cid,PROP1_NAME,PROP1_SIZE,PROP1_DEF_VALUE,NULL,NULL,NULL,NULL,NULL,NULL); |