diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-05-26 02:43:51 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-05-26 02:43:51 (GMT) |
commit | abdbd8f0bde1e044668f734b3c0f449e07b0531d (patch) | |
tree | 93bf3aee325428e5f1ed6db796dc2162f2e2e0f2 /test/tselect.c | |
parent | 85d15667be28bb8a2f0affd44d811bb565508f63 (diff) | |
download | hdf5-abdbd8f0bde1e044668f734b3c0f449e07b0531d.zip hdf5-abdbd8f0bde1e044668f734b3c0f449e07b0531d.tar.gz hdf5-abdbd8f0bde1e044668f734b3c0f449e07b0531d.tar.bz2 |
[svn-r1280] Added some extra debugging output.
Diffstat (limited to 'test/tselect.c')
-rw-r--r-- | test/tselect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tselect.c b/test/tselect.c index f94ee85..4e431ad 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -166,7 +166,7 @@ test_select_hyper(void) tbuf2=rbuf+(i*SPACE3_DIM2); for(j=0; j<SPACE3_DIM2; j++, tbuf++, tbuf2++) { if(*tbuf!=*tbuf2) { - printf("hyperslab values don't match!, i=%d, j=%d\n",i,j); + printf("%d: hyperslab values don't match!, i=%d, j=%d\n",__LINE__,i,j); } /* end if */ } /* end for */ } /* end for */ @@ -445,7 +445,7 @@ test_select_all(void) tbuf2=rbuf+(i*SPACE3_DIM2); for(j=0; j<SPACE3_DIM2; j++, tbuf++, tbuf2++) { if(*tbuf!=*tbuf2) { - printf("hyperslab values don't match!, i=%d, j=%d\n",i,j); + printf("%d: hyperslab values don't match!, i=%d, j=%d, *tbuf=%d, *tbuf2=%d\n",__LINE__,i,j,(int)*tbuf,(int)*tbuf2); } /* end if */ } /* end for */ } /* end for */ @@ -1224,7 +1224,7 @@ test_select_hyper_offset(void) tbuf2=rbuf+(i*SPACE3_DIM2); for(j=0; j<SPACE3_DIM2; j++, tbuf++, tbuf2++) { if(*tbuf!=*tbuf2) { - printf("hyperslab values don't match!, i=%d, j=%d\n",i,j); + printf("%d: hyperslab values don't match!, i=%d, j=%d\n",__LINE__,i,j); } /* end if */ } /* end for */ } /* end for */ |