summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-12-03 23:14:57 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-12-16 16:13:31 (GMT)
commit19f32485cf50b1797583e9f31acccd7e55b8a2a2 (patch)
tree5504e72801d7fc213329764ab59032817717dddc /test
parentca6294a0e92a70a0988c3a35f98451d69a5faad5 (diff)
downloadhdf5-19f32485cf50b1797583e9f31acccd7e55b8a2a2.zip
hdf5-19f32485cf50b1797583e9f31acccd7e55b8a2a2.tar.gz
hdf5-19f32485cf50b1797583e9f31acccd7e55b8a2a2.tar.bz2
Fixed missing blob callbacks in test VOL connectors.
Diffstat (limited to 'test')
-rw-r--r--test/null_vol_connector.c6
-rw-r--r--test/vol.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/test/null_vol_connector.c b/test/null_vol_connector.c
index 5ed8545..14e1a38 100644
--- a/test/null_vol_connector.c
+++ b/test/null_vol_connector.c
@@ -116,6 +116,12 @@ static const H5VL_class_t null_vol_g = {
NULL, /* optional */
NULL /* free */
},
+ { /* blob_cls */
+ NULL, /* put */
+ NULL, /* get */
+ NULL, /* specific */
+ NULL /* optional */
+ },
NULL /* optional */
};
diff --git a/test/vol.c b/test/vol.c
index 5ff0af0..da42a1e 100644
--- a/test/vol.c
+++ b/test/vol.c
@@ -131,6 +131,12 @@ static const H5VL_class_t fake_vol_g = {
NULL, /* optional */
NULL /* free */
},
+ { /* blob_cls */
+ NULL, /* put */
+ NULL, /* get */
+ NULL, /* specific */
+ NULL /* optional */
+ },
NULL /* optional */
};