diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-04-20 20:51:22 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-04-20 20:51:22 (GMT) |
commit | 614e46f270a2acc01a9d15c456420320f207086b (patch) | |
tree | 284b19d2abb4231f366169835d2965a653de7f93 /tools/h5dump/CMakeLists.txt | |
parent | 27be7d1e2d95618c72bbefbed54e644b3b2d21ae (diff) | |
download | hdf5-614e46f270a2acc01a9d15c456420320f207086b.zip hdf5-614e46f270a2acc01a9d15c456420320f207086b.tar.gz hdf5-614e46f270a2acc01a9d15c456420320f207086b.tar.bz2 |
[svn-r20577] Bug 1386 - allowing dimension size to be zero. I added test cases in the tests for h5dump and h5diff. I also added the
test cases in the CMAKE script.
Tested on jam, linew, and amani. Tested CMAKE on jam.
Diffstat (limited to 'tools/h5dump/CMakeLists.txt')
-rw-r--r-- | tools/h5dump/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index b732bfe..30b40da 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -115,6 +115,7 @@ IF (BUILD_TESTING) tnbit.ddl tnofilename.ddl tnullspace.ddl + zerodim.ddl tordergr1.ddl tordergr2.ddl tordergr3.ddl @@ -287,6 +288,7 @@ IF (BUILD_TESTING) tnamed_dtype_attr.h5 tnestedcomp.h5 tnullspace.h5 + zerodim.h5 torderattr.h5 tordergr.h5 tsaf.h5 @@ -711,6 +713,8 @@ IF (BUILD_TESTING) tnofilename.out.err tnullspace.out tnullspace.out.err + zerodim.out + zerodim.out.err tordergr1.out tordergr1.out.err tordergr2.out @@ -1021,6 +1025,9 @@ IF (BUILD_TESTING) # test for displaying dataset and attribute of null space ADD_H5_TEST (tnullspace 0 tnullspace.h5) + # test for displaying dataset and attribute of space with 0 dimension size + ADD_H5_TEST (zerodim 0 zerodim.h5) + # test for long double (some systems do not have long double) #ADD_H5_TEST (tldouble 0 tldouble.h5) @@ -1327,6 +1334,8 @@ IF (BUILD_TESTING) ##Test dataset and attribute of null space. Commented out: ## wait until the XML schema is updated for null space. ## ADD_XML_H5_TEST (tnullspace.h5 0 tnulspace.h5) + ## So is dataspace with 0 dimension size. + ## ADD_XML_H5_TEST (zerodim.h5 0 zerodim.h5) # other options for xml |