diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-10-24 13:05:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 13:05:13 (GMT) |
commit | 313a8c8546b3b975fba722b015c8c8269dd240cb (patch) | |
tree | abbc9530d2a1460110e6b41af9de071deb66ead0 /test/earray.c | |
parent | 2c3cf8240f45508dea02cab08fa67c2a775cab58 (diff) | |
parent | 2ae59f1c6199c62d6efeb43f91924e06f1fd6248 (diff) | |
download | hdf5-313a8c8546b3b975fba722b015c8c8269dd240cb.zip hdf5-313a8c8546b3b975fba722b015c8c8269dd240cb.tar.gz hdf5-313a8c8546b3b975fba722b015c8c8269dd240cb.tar.bz2 |
Merge pull request #59 from derobins/trivial/HDprefix
HD prefix updates in src/ and test/
Diffstat (limited to 'test/earray.c')
-rw-r--r-- | test/earray.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/earray.c b/test/earray.c index 79bf0f1..4ef79ee 100644 --- a/test/earray.c +++ b/test/earray.c @@ -759,7 +759,7 @@ test_create(hid_t fapl, H5EA_create_t *cparam, earray_test_param_t H5_ATTR_UNUSE } #else /* NDEBUG */ SKIPPED(); - puts(" Not tested when assertions are disabled"); + HDputs(" Not tested when assertions are disabled"); #endif /* NDEBUG */ /* @@ -2427,12 +2427,12 @@ main(void) switch (curr_test) { /* "Normal" testing parameters */ case EARRAY_TEST_NORMAL: - puts("Testing with normal parameters"); + HDputs("Testing with normal parameters"); break; /* "Re-open array" testing parameters */ case EARRAY_TEST_REOPEN: - puts("Testing with reopen array flag set"); + HDputs("Testing with reopen array flag set"); tparam.reopen_array = EARRAY_TEST_REOPEN; break; @@ -2461,31 +2461,31 @@ main(void) switch (curr_iter) { /* "Forward" testing parameters */ case EARRAY_ITER_FW: - puts("Testing with forward iteration"); + HDputs("Testing with forward iteration"); tparam.eiter = &ea_iter_fw; break; /* "Reverse" testing parameters */ case EARRAY_ITER_RV: - puts("Testing with reverse iteration"); + HDputs("Testing with reverse iteration"); tparam.eiter = &ea_iter_rv; break; /* "Random" testing parameters */ case EARRAY_ITER_RND: - puts("Testing with random iteration"); + HDputs("Testing with random iteration"); tparam.eiter = &ea_iter_rnd; break; /* "Random #2" testing parameters */ case EARRAY_ITER_RND2: - puts("Testing with random #2 iteration"); + HDputs("Testing with random #2 iteration"); tparam.eiter = &ea_iter_rnd2; break; /* "Cyclic" testing parameters */ case EARRAY_ITER_CYC: - puts("Testing with cyclic iteration"); + HDputs("Testing with cyclic iteration"); tparam.eiter = &ea_iter_cyc; break; |