diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:38:51 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:38:51 (GMT) |
commit | a3dfc8e0c571373a8d96a9309b1579655c4e375a (patch) | |
tree | ba774919141af053f886d568128b7fd4e56d9ddd /test/tgenprop.c | |
parent | fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e (diff) | |
download | hdf5-a3dfc8e0c571373a8d96a9309b1579655c4e375a.zip hdf5-a3dfc8e0c571373a8d96a9309b1579655c4e375a.tar.gz hdf5-a3dfc8e0c571373a8d96a9309b1579655c4e375a.tar.bz2 |
[svn-r4544]
Purpose:
Changed the file creation property list to the new generic property list.
Modified for new file creation property list.
Platform tested:
IRIX64, SunOS5.7, FreeBSD
Diffstat (limited to 'test/tgenprop.c')
-rw-r--r-- | test/tgenprop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tgenprop.c b/test/tgenprop.c index c2e5c76..af260f3 100644 --- a/test/tgenprop.c +++ b/test/tgenprop.c @@ -93,7 +93,7 @@ test_genprop_basic_class(void) VERIFY(ret, 1, "H5Pequal"); /* Make certain false postives aren't being returned */ - ret = H5Pequal(cid2,H5P_FILE_CREATE_NEW); + ret = H5Pequal(cid2,H5P_FILE_CREATE); VERIFY(ret, 0, "H5Pequal"); /* Close parent class */ @@ -105,7 +105,7 @@ test_genprop_basic_class(void) CHECK_I(ret, "H5Pclose_class"); /* Create another new generic class, derived from file creation class */ - cid1 = H5Pcreate_class(H5P_FILE_CREATE_NEW,CLASS2_NAME,CLASS2_HASHSIZE,NULL,NULL,NULL,NULL,NULL,NULL); + cid1 = H5Pcreate_class(H5P_FILE_CREATE,CLASS2_NAME,CLASS2_HASHSIZE,NULL,NULL,NULL,NULL,NULL,NULL); CHECK_I(cid1, "H5Pcreate_class"); /* Check class name */ @@ -122,7 +122,7 @@ test_genprop_basic_class(void) CHECK_I(cid2, "H5Pget_class_parent"); /* Verify class parent correct */ - ret = H5Pequal(cid2,H5P_FILE_CREATE_NEW); + ret = H5Pequal(cid2,H5P_FILE_CREATE); VERIFY(ret, 1, "H5Pequal"); /* Check class parent's parent */ |