From fc59a903d181253c43444ae1d1dd5de4692f8dc0 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Fri, 11 Jan 2008 16:57:21 -0500 Subject: [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. --- test/Makefile.in | 2 +- 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); -- cgit v0.12