diff options
Diffstat (limited to 'test/plugin.c')
-rw-r--r-- | test/plugin.c | 5 |
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 |