diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 21:39:53 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 21:39:53 (GMT) |
commit | 8ffd55478e11904f193b4a98477b3bcb452b93ac (patch) | |
tree | 5843b13e826ae4c9b3f471dfa4536d7882b4d8ba /test/plugin.c | |
parent | f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d (diff) | |
download | hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.zip hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.tar.gz hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.tar.bz2 |
[svn-r23432] I added a new macro HDF5_PLUGIN_PRELOAD to skip plugin loading during data reading.
Tested on koala and jam.
Diffstat (limited to 'test/plugin.c')
-rw-r--r-- | test/plugin.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/plugin.c b/test/plugin.c index 3cadb3c..d5a30f9 100644 --- a/test/plugin.c +++ b/test/plugin.c @@ -31,6 +31,13 @@ #define H5Z_PACKAGE #include "H5Zpkg.h" +/* Filters for HDF5 internal test */ +#define H5Z_FILTER_DYNLIB1 257 +#define H5Z_FILTER_DYNLIB2 258 + +/* Bzip2 filter */ +#define H5Z_FILTER_BZIP2 307 + const char *FILENAME[] = { "plugin", NULL |