diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2017-12-11 16:15:23 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2017-12-11 16:15:23 (GMT) |
commit | e7e9196daf8adda3d55f2cd638884651c0998d02 (patch) | |
tree | 6594b941c3c43a8a80df2ecb7fd10966e3ba47d1 /test | |
parent | b286085afcfec98d115a6ff82b34e032532cd418 (diff) | |
download | hdf5-e7e9196daf8adda3d55f2cd638884651c0998d02.zip hdf5-e7e9196daf8adda3d55f2cd638884651c0998d02.tar.gz hdf5-e7e9196daf8adda3d55f2cd638884651c0998d02.tar.bz2 |
Fixed comments and updated Makefile.in
Platforms tested:
Linux/32 2.6 (jam)
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 5 | ||||
-rw-r--r-- | test/tverbounds18.c | 23 |
2 files changed, 13 insertions, 15 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index e3fea25..21b1a63 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -455,7 +455,7 @@ am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) tarray.$(OBJEXT) \ trefer.$(OBJEXT) trefstr.$(OBJEXT) tselect.$(OBJEXT) \ tskiplist.$(OBJEXT) tsohm.$(OBJEXT) ttime.$(OBJEXT) \ ttst.$(OBJEXT) tunicode.$(OBJEXT) tvlstr.$(OBJEXT) \ - tvltypes.$(OBJEXT) + tvltypes.$(OBJEXT) tverbounds18.$(OBJEXT) testhdf5_OBJECTS = $(am_testhdf5_OBJECTS) testhdf5_LDADD = $(LDADD) testhdf5_DEPENDENCIES = libh5test.la $(LIBHDF5) @@ -1149,7 +1149,7 @@ VFD_LIST = sec2 stdio core core_paged split multi family \ testhdf5_SOURCES = testhdf5.c tarray.c tattr.c tchecksum.c tconfig.c tfile.c \ tgenprop.c th5o.c th5s.c tcoords.c theap.c tid.c titerate.c tmeta.c tmisc.c \ trefer.c trefstr.c tselect.c tskiplist.c tsohm.c ttime.c ttst.c tunicode.c \ - tvlstr.c tvltypes.c + tvlstr.c tvltypes.c tverbounds18.c # Temporary files. @@ -1664,6 +1664,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttsafe_error.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttst.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tunicode.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tverbounds18.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tvlstr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tvltypes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlink.Po@am__quote@ diff --git a/test/tverbounds18.c b/test/tverbounds18.c index 563d084..5fef2f9 100644 --- a/test/tverbounds18.c +++ b/test/tverbounds18.c @@ -31,20 +31,18 @@ * *************************************************************/ - /* #include "hdf5.h" - */ #include "h5test.h" #include "H5srcdir.h" #include "testhdf5.h" /*********************************************************************** - * test_earliest_latest() creates file "bounds_earliest_latest.h5" + * test_earliest_latest() reads file "bounds_earliest_latest.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset - * with layout version 3 in a file with superblock version 0 and - * earliest and latest bounds. However, it cannot open the chunked - * dataset with layout version 4 in the same file. + * with layout version 3 in a file with superblock version 0. + * However, it cannot open the chunked dataset with layout version 4 + * in the same file. * ***********************************************************************/ #define FILENAME_E_L "bounds_earliest_latest.h5" @@ -89,12 +87,11 @@ static void test_earliest_latest(void) } /*********************************************************************** - * test_earliest_v18() creates file "bounds_earliest_v18.h5" + * test_earliest_v18() reads file "bounds_earliest_v18.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset - * with layout version 3 in a file with superblock version 0 and - * earliest and version 1.8 bounds. + * with layout version 3 in a file with superblock version 0. * ***********************************************************************/ #define FILENAME_E_18 "bounds_earliest_v18.h5" @@ -129,10 +126,10 @@ static void test_earliest_v18(void) } /*********************************************************************** - * test_latest_latest() creates file "bounds_latest_latest.h5" + * test_latest_latest() reads file "bounds_latest_latest.h5" * * Description: - * This test shows that the 1.8 library is able to open a file with + * This test shows that the 1.8 library is unable to open a file with * superblock version 3. * ***********************************************************************/ @@ -153,7 +150,7 @@ static void test_latest_latest(void) } /*********************************************************************** - * test_v18_latest() creates file "bounds_v18_latest.h5" + * test_v18_latest() reads file "bounds_v18_latest.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset @@ -192,7 +189,7 @@ static void test_v18_latest(void) } /*********************************************************************** - * test_v18_v18() creates file "bounds_v18_v18.h5" + * test_v18_v18() reads file "bounds_v18_v18.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset |