diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-27 13:42:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-27 13:42:22 (GMT) |
commit | c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e (patch) | |
tree | 33037ccb57b98b0fafdb75b8b22c070eb2baebf7 /test/extend.c | |
parent | 32b58cef083388eec4b81c956eef717f59f24a87 (diff) | |
download | hdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.zip hdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.tar.gz hdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.tar.bz2 |
[svn-r5895] Purpose:
Code cleanup/More tests
Description:
Cleaned up some compiler warnings and wrote additional tests for space
allocation and storage size routines.
Platforms tested:
FreeBSD 4.6 (sleipnir) w/serial & parallel. Will be testing on IRIX64
6.5 (modi4) in serial & parallel shortly.
Diffstat (limited to 'test/extend.c')
-rw-r--r-- | test/extend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/extend.c b/test/extend.c index 128985f..6e64bef 100644 --- a/test/extend.c +++ b/test/extend.c @@ -121,6 +121,8 @@ main (void) if (buf2[k][m]!=buf1[(i%2)*NX/2+k][(j%2)*NY/2+m]) { H5_FAILED(); printf(" i=%d, j=%d, k=%d, m=%d\n", i, j, k, m); + printf(" buf2[%d][%d]=%d\n",k,m,buf2[k][m]); + printf(" buf1[%d][%d]=%d\n",(i%2)*NX/2+k,(j%2)*NY/2+m,buf1[(i%2)*NX/2+k][(j%2)*NY/2+m]); goto error; } } |