diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-31 16:17:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-31 16:17:23 (GMT) |
commit | 3ad545c7ae76e6ea477268ea40935693054df8ad (patch) | |
tree | 919e1614c64c2662652bb14021f43125360674c9 /test | |
parent | f81b42e76a5ad492237d88a41b0982e1a1cee13f (diff) | |
download | hdf5-3ad545c7ae76e6ea477268ea40935693054df8ad.zip hdf5-3ad545c7ae76e6ea477268ea40935693054df8ad.tar.gz hdf5-3ad545c7ae76e6ea477268ea40935693054df8ad.tar.bz2 |
[svn-r6938] Purpose:
Code cleanup
Description:
Remove redundant "Testing" from test output.
Platforms tested:
h5committestted (although Fortran tests failed for some reason)
Diffstat (limited to 'test')
-rw-r--r-- | test/istore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/istore.c b/test/istore.c index a9075cf..3e13523 100644 --- a/test/istore.c +++ b/test/istore.c @@ -247,7 +247,7 @@ test_extend(hid_t f, const char *prefix, (unsigned long) nx, (unsigned long) ny, (unsigned long) nz); } - sprintf(s, "Testing istore extend: %s", dims); + sprintf(s, "istore extend: %s", dims); TESTING(s); buf = H5MM_malloc(nx * ny * nz); check = H5MM_malloc(nx * ny * nz); @@ -461,7 +461,7 @@ test_sparse(hid_t f, const char *prefix, size_t nblocks, (unsigned long) nx, (unsigned long) ny, (unsigned long) nz); } - sprintf(s, "Testing istore sparse: %s", dims); + sprintf(s, "istore sparse: %s", dims); TESTING(s); buf = H5MM_malloc(nx * ny * nz); HDmemset(buf, 128, nx * ny * nz); |