diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2012-12-13 16:13:43 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2012-12-13 16:13:43 (GMT) |
commit | 6050e7814364a78fc6d196c5b6a6e4b6e4d274ca (patch) | |
tree | 5df3c83ab7935c99ceb7271702a55fb483b99b73 /hl | |
parent | fc9ed51a3aea481f397fa4b278d4908f4fe47b2e (diff) | |
download | hdf5-6050e7814364a78fc6d196c5b6a6e4b6e4d274ca.zip hdf5-6050e7814364a78fc6d196c5b6a6e4b6e4d274ca.tar.gz hdf5-6050e7814364a78fc6d196c5b6a6e4b6e4d274ca.tar.bz2 |
[svn-r23097] I changed H5Dopen to H5Dopen2 in test/dectris_tst.c and hl/test/test_dset_opt.c. I added
hl/test/dectris_hl_perf.c
perform/dectris_perf.c
test/dectris_tst.c
Tested on koala.
Diffstat (limited to 'hl')
-rw-r--r-- | hl/test/test_dset_opt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hl/test/test_dset_opt.c b/hl/test/test_dset_opt.c index ebe28cc..0a0674b 100644 --- a/hl/test/test_dset_opt.c +++ b/hl/test/test_dset_opt.c @@ -207,7 +207,7 @@ test_direct_chunk_write (hid_t file) if(H5Dclose(dataset) < 0) goto error; - if((dataset = H5Dopen(file, DATASETNAME1, H5P_DEFAULT)) < 0) + if((dataset = H5Dopen2(file, DATASETNAME1, H5P_DEFAULT)) < 0) goto error; /* @@ -281,7 +281,7 @@ test_direct_chunk_write (hid_t file) if(H5Dclose(dataset) < 0) goto error; - if((dataset = H5Dopen(file, DATASETNAME1, H5P_DEFAULT)) < 0) + if((dataset = H5Dopen2(file, DATASETNAME1, H5P_DEFAULT)) < 0) goto error; /* Read the chunk back */ @@ -422,7 +422,7 @@ test_skip_compress_write1(hid_t file) if(H5Dclose(dataset) < 0) goto error; - if((dataset = H5Dopen(file, DATASETNAME2, H5P_DEFAULT)) < 0) + if((dataset = H5Dopen2(file, DATASETNAME2, H5P_DEFAULT)) < 0) goto error; /* @@ -664,7 +664,7 @@ test_skip_compress_write2(hid_t file) if(H5Dclose(dataset) < 0) goto error; - if((dataset = H5Dopen(file, DATASETNAME3, H5P_DEFAULT)) < 0) + if((dataset = H5Dopen2(file, DATASETNAME3, H5P_DEFAULT)) < 0) goto error; /* @@ -846,7 +846,7 @@ test_data_conv(hid_t file) if(H5Dclose(dataset) < 0) goto error; - if((dataset = H5Dopen(file, DATASETNAME4, H5P_DEFAULT)) < 0) + if((dataset = H5Dopen2(file, DATASETNAME4, H5P_DEFAULT)) < 0) goto error; /* |