diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2008-01-11 21:57:21 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2008-01-11 21:57:21 (GMT) |
commit | fc59a903d181253c43444ae1d1dd5de4692f8dc0 (patch) | |
tree | 68bf468d5d3034f5a20a629a65f5dfd3df78c70e | |
parent | dee56944a1a3030abd8454449aa58719bbb0c6e9 (diff) | |
download | hdf5-fc59a903d181253c43444ae1d1dd5de4692f8dc0.zip hdf5-fc59a903d181253c43444ae1d1dd5de4692f8dc0.tar.gz hdf5-fc59a903d181253c43444ae1d1dd5de4692f8dc0.tar.bz2 |
[svn-r14401] After added tcoords.c, the Makefile.in wasn't updated properly. The object file tcoords.o and
tcoords.lo weren't cleaned by "gmake clean". Corrected it.
Tested on smirom. Simple change.
-rw-r--r-- | test/Makefile.in | 2 | ||||
-rw-r--r-- | test/tcoords.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index a3137be..9189ce4 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -74,7 +74,7 @@ CLEAN=$(TIMINGS) TEST_SRC=big.c bittests.c cache.c cmpd_dset.c dsets.c dtypes.c extend.c \ external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \ istore.c lheap.c links.c mount.c mtime.c ohdr.c stab.c tarray.c \ - tattr.c tconfig.c testhdf5.c testmeta.c tfile.c \ + tattr.c tconfig.c tcoords.c testhdf5.c testmeta.c tfile.c \ tgenprop.c th5s.c theap.c titerate.c tmeta.c tmisc.c trefer.c trefstr.c \ tselect.c tskiplist.c ttime.c ttst.c tvltypes.c tvlstr.c \ unlink.c enum.c ttsafe.c ttsafe_dcreate.c ttsafe_error.c \ diff --git a/test/tcoords.c b/test/tcoords.c index 17aa52f..90f77db 100644 --- a/test/tcoords.c +++ b/test/tcoords.c @@ -100,7 +100,7 @@ static void test_single_end(hid_t file) } } - ret = H5Dwrite(did, H5T_NATIVE_INT, sid, sid, H5P_DEFAULT, da_buffer); + ret = H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, da_buffer); CHECK(ret, FAIL, "H5Dwrite"); ret = H5Dclose(did); @@ -286,7 +286,7 @@ static void test_multiple_ends(hid_t file) da_buffer[i][j][k][l][m][n][p][1] = i*1000000 + j*100000 + k*10000 + l*1000 + m*100 + n*10 + p + 1; } - ret = H5Dwrite(did, H5T_NATIVE_INT, sid, sid, H5P_DEFAULT, da_buffer); + ret = H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, da_buffer); CHECK(ret, FAIL, "H5Dwrite"); ret = H5Dclose(did); |