summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-08-24 19:33:58 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-08-24 19:33:58 (GMT)
commita30cbd63b0423a7e63cedf4902df0a6ddd4c8ddb (patch)
tree6e3cf6d80c7db16c18128c25e606185e15cbe8b4
parent644f9c0c98e58eab621d41bf8c59394e6ed64355 (diff)
downloadhdf5-a30cbd63b0423a7e63cedf4902df0a6ddd4c8ddb.zip
hdf5-a30cbd63b0423a7e63cedf4902df0a6ddd4c8ddb.tar.gz
hdf5-a30cbd63b0423a7e63cedf4902df0a6ddd4c8ddb.tar.bz2
[svn-r9146] Purpose:
h5repack test Description: modified a test file generation contents, for more easy debugging (generated just one reference dataset and one region reference ) Solution: Platforms tested: linux aix solaris Misc. update:
-rw-r--r--tools/h5repack/testh5repack_dset.c51
-rw-r--r--tools/h5repack/testh5repack_main.c2
-rw-r--r--tools/h5repack/testh5repack_make.c7
-rw-r--r--tools/testfiles/test0.h5bin2072 -> 2072 bytes
-rw-r--r--tools/testfiles/test1.h5bin33920 -> 20944 bytes
-rw-r--r--tools/testfiles/test3.h5bin6984 -> 6712 bytes
-rw-r--r--tools/testfiles/test4.h5bin29384 -> 29384 bytes
-rw-r--r--tools/testfiles/test_all.h5bin28062 -> 28062 bytes
-rw-r--r--tools/testfiles/test_deflate.h5bin5954 -> 5954 bytes
-rw-r--r--tools/testfiles/test_fletcher32.h5bin7880 -> 7880 bytes
-rw-r--r--tools/testfiles/test_shuffle.h5bin7864 -> 7864 bytes
-rw-r--r--tools/testfiles/test_szip.h5bin5588 -> 5588 bytes
12 files changed, 22 insertions, 38 deletions
diff --git a/tools/h5repack/testh5repack_dset.c b/tools/h5repack/testh5repack_dset.c
index 57a5b27..6d3e1d3 100644
--- a/tools/h5repack/testh5repack_dset.c
+++ b/tools/h5repack/testh5repack_dset.c
@@ -61,14 +61,14 @@ void write_dset_in(hid_t loc_id,
herr_t status;
int val, i, j, k, n;
float f;
- int fillvalue=2;
/* create 1D attributes with dimension [2], 2 elements */
hsize_t dims[1]={2};
+ hsize_t dims1r[1]={1};
char buf1[2][2]= {"ab","de"}; /* string */
char buf2[2]= {1,2}; /* bitfield, opaque */
s_t buf3[2]= {{1,2},{3,4}}; /* compound */
- hobj_ref_t buf4[2]; /* reference */
+ hobj_ref_t buf4[1]; /* reference */
e_t buf45[2]= {RED,GREEN}; /* enum */
hvl_t buf5[2]; /* vlen */
hsize_t dimarray[1]={3}; /* array dimension */
@@ -78,10 +78,11 @@ void write_dset_in(hid_t loc_id,
/* create 2D attributes with dimension [3][2], 6 elements */
hsize_t dims2[2]={3,2};
+ hsize_t dims2r[2]={1,1};
char buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; /* string */
char buf22[3][2]= {{1,2},{3,4},{5,6}}; /* bitfield, opaque */
s_t buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; /* compound */
- hobj_ref_t buf42[3][2]; /* reference */
+ hobj_ref_t buf42[1][1]; /* reference */
hvl_t buf52[3][2]; /* vlen */
int buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; /* array */
int buf72[3][2]= {{1,2},{3,4},{5,6}}; /* integer */
@@ -89,12 +90,13 @@ void write_dset_in(hid_t loc_id,
/* create 3D attributes with dimension [4][3][2], 24 elements */
hsize_t dims3[3]={4,3,2};
+ hsize_t dims3r[3]={1,1,1};
char buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq",
"rs","tu","vw","xz","AB","CD","EF","GH",
"IJ","KL","MN","PQ","RS","TU","VW","XZ"}; /* string */
char buf23[4][3][2]; /* bitfield, opaque */
s_t buf33[4][3][2]; /* compound */
- hobj_ref_t buf43[4][3][2]; /* reference */
+ hobj_ref_t buf43[1][1][1]; /* reference */
hvl_t buf53[4][3][2]; /* vlen */
int buf63[24][3]; /* array */
int buf73[4][3][2]; /* integer */
@@ -192,8 +194,7 @@ void write_dset_in(hid_t loc_id,
if (dset_name)
{
status=H5Rcreate(&buf4[0],file_id,dset_name,H5R_OBJECT,-1);
- status=H5Rcreate(&buf4[1],file_id,dset_name,H5R_OBJECT,-1);
- write_dset(loc_id,1,dims,"reference to object ",H5T_STD_REF_OBJ,buf4);
+ write_dset(loc_id,1,dims1r,"reference to object ",H5T_STD_REF_OBJ,buf4);
}
/* Dataset region reference ( H5R_DATASET_REGION ) */
@@ -347,12 +348,12 @@ void write_dset_in(hid_t loc_id,
/* Create references to dataset */
if (dset_name)
{
- for (i = 0; i < 3; i++) {
- for (j = 0; j < 2; j++) {
+ for (i = 0; i < 1; i++) {
+ for (j = 0; j < 1; j++) {
status=H5Rcreate(&buf42[i][j],file_id,dset_name,H5R_OBJECT,-1);
}
}
- write_dset(loc_id,2,dims2,"reference to object 2D",H5T_STD_REF_OBJ,buf42);
+ write_dset(loc_id,2,dims2r,"reference to object 2D",H5T_STD_REF_OBJ,buf42);
}
/*-------------------------------------------------------------------------
@@ -424,7 +425,6 @@ void write_dset_in(hid_t loc_id,
plist_id = H5Pcreate(H5P_DATASET_CREATE);
- status = H5Pset_fill_value(plist_id, H5T_NATIVE_INT, &fillvalue);
space_id = H5Screate_simple(2,dims2,NULL);
dset_id = H5Dcreate(loc_id,"integer2D",H5T_NATIVE_INT,space_id,plist_id);
status = H5Dwrite(dset_id,H5T_NATIVE_INT,H5S_ALL,H5S_ALL,H5P_DEFAULT,buf72);
@@ -525,13 +525,13 @@ void write_dset_in(hid_t loc_id,
/* Create references to dataset */
if (dset_name)
{
- for (i = 0; i < 4; i++) {
- for (j = 0; j < 3; j++) {
- for (k = 0; k < 2; k++)
+ for (i = 0; i < 1; i++) {
+ for (j = 0; j < 1; j++) {
+ for (k = 0; k < 1; k++)
status=H5Rcreate(&buf43[i][j][k],file_id,dset_name,H5R_OBJECT,-1);
}
}
- write_dset(loc_id,3,dims3,"reference to object 3D",H5T_STD_REF_OBJ,buf43);
+ write_dset(loc_id,3,dims3r,"reference to object 3D",H5T_STD_REF_OBJ,buf43);
}
/*-------------------------------------------------------------------------
@@ -628,7 +628,7 @@ void write_dset_in(hid_t loc_id,
*/
#define SPACE1_RANK 1
-#define SPACE1_DIM1 4
+#define SPACE1_DIM1 1
#define SPACE2_RANK 2
#define SPACE2_DIM1 10
#define SPACE2_DIM2 10
@@ -646,7 +646,6 @@ static void make_dset_reg_ref(hid_t loc_id)
hsize_t stride[SPACE2_RANK]; /* Stride of hyperslab */
hsize_t count[SPACE2_RANK]; /* Element count of hyperslab */
hsize_t block[SPACE2_RANK]; /* Block size of hyperslab */
- hssize_t coord1[NPOINTS][SPACE2_RANK]; /* Coordinates for point selection */
hdset_reg_ref_t *wbuf; /* buffer to write to disk */
int *dwbuf; /* Buffer for writing numeric data to disk */
int i; /* counting variables */
@@ -686,25 +685,9 @@ static void make_dset_reg_ref(hid_t loc_id)
block[0]=1; block[1]=1;
ret = H5Sselect_hyperslab(sid2,H5S_SELECT_SET,start,stride,count,block);
- /* Store first dataset region */
+ /* Store dataset region */
ret = H5Rcreate(&wbuf[0],loc_id,"dset referenced region",H5R_DATASET_REGION,sid2);
-
- /* Select sequence of ten points for second reference */
- coord1[0][0]=6; coord1[0][1]=9;
- coord1[1][0]=2; coord1[1][1]=2;
- coord1[2][0]=8; coord1[2][1]=4;
- coord1[3][0]=1; coord1[3][1]=6;
- coord1[4][0]=2; coord1[4][1]=8;
- coord1[5][0]=3; coord1[5][1]=2;
- coord1[6][0]=0; coord1[6][1]=4;
- coord1[7][0]=9; coord1[7][1]=0;
- coord1[8][0]=7; coord1[8][1]=1;
- coord1[9][0]=3; coord1[9][1]=3;
- ret = H5Sselect_elements(sid2,H5S_SELECT_SET,NPOINTS,(const hssize_t **)coord1);
-
- /* Store second dataset region */
- ret = H5Rcreate(&wbuf[1],loc_id,"dset referenced region",H5R_DATASET_REGION,sid2);
-
+
/* Write selection to disk */
ret=H5Dwrite(dset1,H5T_STD_REF_DSETREG,H5S_ALL,H5S_ALL,H5P_DEFAULT,wbuf);
diff --git a/tools/h5repack/testh5repack_main.c b/tools/h5repack/testh5repack_main.c
index e99c1fd..caa4ac9 100644
--- a/tools/h5repack/testh5repack_main.c
+++ b/tools/h5repack/testh5repack_main.c
@@ -78,6 +78,8 @@ int main (void)
TEST_ERROR;
PASSED();
+ /*return 0;*/
+
/*-------------------------------------------------------------------------
* file with all kinds of dataset datatypes
*-------------------------------------------------------------------------
diff --git a/tools/h5repack/testh5repack_make.c b/tools/h5repack/testh5repack_make.c
index fe8a626..3cf7c11 100644
--- a/tools/h5repack/testh5repack_make.c
+++ b/tools/h5repack/testh5repack_make.c
@@ -233,13 +233,11 @@ int make_all_objects(hid_t loc_id)
H5Glink(loc_id, H5G_LINK_SOFT, "dset", "link");
/*-------------------------------------------------------------------------
- * write a series of datasetes on the group, and root group
+ * write a series of datasetes
*-------------------------------------------------------------------------
*/
write_dset_in(root_id,"dset_referenced",loc_id,0);
- write_dset_in(group_id,"dset_referenced",loc_id,0);
-
/* Close */
H5Dclose(dset_id);
@@ -984,4 +982,5 @@ int make_fill(hid_t loc_id)
return 0;
-} \ No newline at end of file
+}
+
diff --git a/tools/testfiles/test0.h5 b/tools/testfiles/test0.h5
index 3c692bc..a5b7101 100644
--- a/tools/testfiles/test0.h5
+++ b/tools/testfiles/test0.h5
Binary files differ
diff --git a/tools/testfiles/test1.h5 b/tools/testfiles/test1.h5
index 9b7f3f3..019ba2d 100644
--- a/tools/testfiles/test1.h5
+++ b/tools/testfiles/test1.h5
Binary files differ
diff --git a/tools/testfiles/test3.h5 b/tools/testfiles/test3.h5
index f2e9a2c..45b3ec1 100644
--- a/tools/testfiles/test3.h5
+++ b/tools/testfiles/test3.h5
Binary files differ
diff --git a/tools/testfiles/test4.h5 b/tools/testfiles/test4.h5
index 1931f23..77ee7fb 100644
--- a/tools/testfiles/test4.h5
+++ b/tools/testfiles/test4.h5
Binary files differ
diff --git a/tools/testfiles/test_all.h5 b/tools/testfiles/test_all.h5
index a3a1398..a2a68fb 100644
--- a/tools/testfiles/test_all.h5
+++ b/tools/testfiles/test_all.h5
Binary files differ
diff --git a/tools/testfiles/test_deflate.h5 b/tools/testfiles/test_deflate.h5
index 368d622..d63a957 100644
--- a/tools/testfiles/test_deflate.h5
+++ b/tools/testfiles/test_deflate.h5
Binary files differ
diff --git a/tools/testfiles/test_fletcher32.h5 b/tools/testfiles/test_fletcher32.h5
index f21bcbf..7acf486 100644
--- a/tools/testfiles/test_fletcher32.h5
+++ b/tools/testfiles/test_fletcher32.h5
Binary files differ
diff --git a/tools/testfiles/test_shuffle.h5 b/tools/testfiles/test_shuffle.h5
index 73c1a9d..9cf5ec2 100644
--- a/tools/testfiles/test_shuffle.h5
+++ b/tools/testfiles/test_shuffle.h5
Binary files differ
diff --git a/tools/testfiles/test_szip.h5 b/tools/testfiles/test_szip.h5
index ca2d9aa..864e0a8 100644
--- a/tools/testfiles/test_szip.h5
+++ b/tools/testfiles/test_szip.h5
Binary files differ