diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-04 18:34:54 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-04 18:35:10 (GMT) |
commit | d28a427769c4bc1ff3076a74dcff524db29e593b (patch) | |
tree | 86a62111f8e64ebfd7c4cedc314db57ac898e791 /test | |
parent | 6e794d2f37454e22e77d287c52936c43e131a321 (diff) | |
download | hdf5-d28a427769c4bc1ff3076a74dcff524db29e593b.zip hdf5-d28a427769c4bc1ff3076a74dcff524db29e593b.tar.gz hdf5-d28a427769c4bc1ff3076a74dcff524db29e593b.tar.bz2 |
HDFFV-10143 branch does not have HDprintf
Diffstat (limited to 'test')
-rw-r--r-- | test/plugin.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/plugin.c b/test/plugin.c index 4d0db27..3491ab7 100644 --- a/test/plugin.c +++ b/test/plugin.c @@ -113,7 +113,7 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl) /* Check if all the filters are available */ if(H5Pall_filters_avail(dcpl) != TRUE) { H5_FAILED(); - HDprintf(" Line %d: Incorrect filter availability\n", __LINE__); + printf(" Line %d: Incorrect filter availability\n", __LINE__); TEST_ERROR } /* end if */ @@ -134,8 +134,8 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl) for(j=0; j<(size_t)size[1]; j++) if(0 != check[i][j]) { H5_FAILED(); - HDprintf(" Read a non-zero value.\n"); - HDprintf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); + printf(" Read a non-zero value.\n"); + printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); TEST_ERROR } /* end if */ PASSED(); @@ -202,8 +202,8 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl) for(j=0; j<size[1]; j++) if(points[i][j] != check[i][j]) { H5_FAILED(); - HDprintf(" Read different values than written.\n"); - HDprintf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); + printf(" Read different values than written.\n"); + printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); TEST_ERROR } /* end if */ @@ -227,8 +227,8 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl) for(j = 0; j < size[1]; j++) if(points[i][j] != check[i][j]) { H5_FAILED(); - HDprintf(" Read different values than written.\n"); - HDprintf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); + printf(" Read different values than written.\n"); + printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); TEST_ERROR } /* end if */ @@ -1059,14 +1059,14 @@ main(void) if(nerrors) TEST_ERROR - HDprintf("All plugin tests passed.\n"); + printf("All plugin tests passed.\n"); h5_cleanup(FILENAME, fapl); return 0; error: nerrors = MAX(1, nerrors); - HDprintf("***** %d PLUGIN TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S"); + printf("***** %d PLUGIN TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S"); return 1; } |