summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-04-04 18:34:54 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-04-04 18:35:10 (GMT)
commitd28a427769c4bc1ff3076a74dcff524db29e593b (patch)
tree86a62111f8e64ebfd7c4cedc314db57ac898e791 /test
parent6e794d2f37454e22e77d287c52936c43e131a321 (diff)
downloadhdf5-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.c18
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;
}