diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-29 20:59:15 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-29 20:59:15 (GMT) |
commit | ed621aae38837e90c7273087de22f1752eee7cc7 (patch) | |
tree | 9d4ccc718d360469fd99c793cd9526c8981efb9b /test/dynlib1.c | |
parent | 5e5e9e3987ddb5ce005f346e95e378e57ad5c762 (diff) | |
download | hdf5-ed621aae38837e90c7273087de22f1752eee7cc7.zip hdf5-ed621aae38837e90c7273087de22f1752eee7cc7.tar.gz hdf5-ed621aae38837e90c7273087de22f1752eee7cc7.tar.bz2 |
[svn-r23494] I added another filter library dynlib2.c for plugin.c test. The test script moves the libdynlib2.so to /tmp then runs
plugin.c.
Tested on jam and koala.
Diffstat (limited to 'test/dynlib1.c')
-rw-r--r-- | test/dynlib1.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/dynlib1.c b/test/dynlib1.c index b879ca2..2e0c593 100644 --- a/test/dynlib1.c +++ b/test/dynlib1.c @@ -44,14 +44,17 @@ const H5Z_class2_t* H5PL_get_plugin_info(void) {return H5Z_DYNLIB1;} /*------------------------------------------------------------------------- * Function: H5Z_filter_dynlib1 * - * Purpose: A dynlib1 compression method that doesn't do anything. + * Purpose: A dynlib1 filter method that adds on and subtract from + * the original value with another value. It will be built + * as a shared library. plugin.c test will load and use + * this filter library. * * Return: Success: Data chunk size * * Failure: 0 * * Programmer: Robb Matzke - * Tuesday, April 21, 1998 + * 29 March 2013 * *------------------------------------------------------------------------- */ |