From 43c48fbadc994f740f63caeb5110442c79346501 Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Tue, 3 Dec 2019 15:14:57 -0800 Subject: Fixed missing blob callbacks in test VOL connectors. --- test/null_vol_connector.c | 6 ++++++ test/vol.c | 6 ++++++ 2 files changed, 12 insertions(+) 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 */ }; -- cgit v0.12