summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-06-07 02:04:34 (GMT)
committerGitHub <noreply@github.com>2021-06-07 02:04:34 (GMT)
commit62ddef9758585ec5556b7ff2465ecae75013322d (patch)
tree2e70b6ed39539c609ad3aab41d1f69db4cf9854b /test
parent9ebe55b34c4d45db6b47d6cd0ee01efa20d0c31d (diff)
downloadhdf5-62ddef9758585ec5556b7ff2465ecae75013322d.zip
hdf5-62ddef9758585ec5556b7ff2465ecae75013322d.tar.gz
hdf5-62ddef9758585ec5556b7ff2465ecae75013322d.tar.bz2
Includes hdf5dev.h in hdf5.h (#728)
* Includes hdf5dev.h in hdf5.h * Removes hdf5dev.h * Restores H5PLextern.h as an independent header * H5PLextern.h missed in the null VOL connector
Diffstat (limited to 'test')
-rw-r--r--test/filter_plugin1_dsets.c2
-rw-r--r--test/filter_plugin2_dsets.c2
-rw-r--r--test/filter_plugin3_dsets.c2
-rw-r--r--test/filter_plugin4_groups.c2
-rw-r--r--test/h5test.h1
-rw-r--r--test/null_vol_connector.c5
6 files changed, 5 insertions, 9 deletions
diff --git a/test/filter_plugin1_dsets.c b/test/filter_plugin1_dsets.c
index 2b1e4d2..5d6c1ef 100644
--- a/test/filter_plugin1_dsets.c
+++ b/test/filter_plugin1_dsets.c
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <stdio.h>
-#include "hdf5dev.h"
+#include "H5PLextern.h"
#define FILTER1_ID 257
diff --git a/test/filter_plugin2_dsets.c b/test/filter_plugin2_dsets.c
index 0bef1a0..d2011d4 100644
--- a/test/filter_plugin2_dsets.c
+++ b/test/filter_plugin2_dsets.c
@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <stdio.h>
-#include "hdf5dev.h"
+#include "H5PLextern.h"
#define FILTER2_ID 258
#define MULTIPLIER 3
diff --git a/test/filter_plugin3_dsets.c b/test/filter_plugin3_dsets.c
index b9b3b82..618ce06 100644
--- a/test/filter_plugin3_dsets.c
+++ b/test/filter_plugin3_dsets.c
@@ -18,7 +18,7 @@
#include <stdlib.h>
#include <stdio.h>
-#include "hdf5dev.h"
+#include "H5PLextern.h"
#define FILTER3_ID 259
diff --git a/test/filter_plugin4_groups.c b/test/filter_plugin4_groups.c
index 589347c..630dcd6 100644
--- a/test/filter_plugin4_groups.c
+++ b/test/filter_plugin4_groups.c
@@ -18,7 +18,7 @@
#include <stdio.h>
#include <string.h>
-#include "hdf5dev.h"
+#include "H5PLextern.h"
#define FILTER4_ID 260
#define SUFFIX_LEN 8
diff --git a/test/h5test.h b/test/h5test.h
index f5c9608..89e30da 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -25,7 +25,6 @@
* so we include the private headers here, along with developer routines.
*/
#include "hdf5.h"
-#include "hdf5dev.h"
#include "H5private.h"
#include "H5Eprivate.h"
diff --git a/test/null_vol_connector.c b/test/null_vol_connector.c
index 7a1de6c..2b375d8 100644
--- a/test/null_vol_connector.c
+++ b/test/null_vol_connector.c
@@ -15,11 +15,8 @@
* (registration, etc.).
*/
-/* Public HDF5 header */
-#include "hdf5.h"
-
/* For HDF5 plugin functionality */
-#include "hdf5dev.h"
+#include "H5PLextern.h"
/* This connector's header */
#include "null_vol_connector.h"