summaryrefslogtreecommitdiffstats
path: root/test/plugin.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2013-04-03 16:30:46 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2013-04-03 16:30:46 (GMT)
commit97caaff719f6916c255c56101d4528676784e406 (patch)
treef89a45db57de3326f451012d08a0f3cce7f8e069 /test/plugin.c
parentf03301ce82e4fb4cd5ace537d8eab408f3238f27 (diff)
downloadhdf5-97caaff719f6916c255c56101d4528676784e406.zip
hdf5-97caaff719f6916c255c56101d4528676784e406.tar.gz
hdf5-97caaff719f6916c255c56101d4528676784e406.tar.bz2
[svn-r23533] I changed the operation in dynlib2.c from math operations pow and sqrt to simpler multiplication and division
to avoid potential rounding problem in math operations. Tested on jam - simple change.
Diffstat (limited to 'test/plugin.c')
-rw-r--r--test/plugin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/plugin.c b/test/plugin.c
index 4f28520..92be6ce 100644
--- a/test/plugin.c
+++ b/test/plugin.c
@@ -691,9 +691,10 @@ main(void)
TEST_ERROR
/* Test dynamically loaded filters for chunked dataset */
- nerrors += (test_filters_for_datasets(file, my_fapl) < 0 ? 1 : 0);
+ nerrors += (test_filters_for_datasets(file, my_fapl) < 0 ? 1 : 0);
- nerrors += (test_filters_for_groups(file, my_fapl) < 0 ? 1 : 0);
+ /* Test dynamically loaded filters for groups */
+ nerrors += (test_filters_for_groups(file, my_fapl) < 0 ? 1 : 0);
if(H5Fclose(file) < 0)
TEST_ERROR