diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-10-04 16:21:30 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-10-04 16:21:30 (GMT) |
commit | 3026ace6ae3873486664ef3f744dd803a323fe31 (patch) | |
tree | b197ef18d6dae60d8636e55d2cd5c9e75f5c4606 /tools/testfiles | |
parent | b2c7d08ae0030b8a3893c21948c611dfb9cefe26 (diff) | |
download | hdf5-3026ace6ae3873486664ef3f744dd803a323fe31.zip hdf5-3026ace6ae3873486664ef3f744dd803a323fe31.tar.gz hdf5-3026ace6ae3873486664ef3f744dd803a323fe31.tar.bz2 |
[svn-r14182]
Added support for displaying several iteration orders on dataset attributes, 4 new tests in test script (name ascending, name descending, creation_order ascending, creation_order descending)
New h5 file is made on the generator program
Tested: windows, linux
Diffstat (limited to 'tools/testfiles')
-rw-r--r-- | tools/testfiles/torderattr.h5 | bin | 0 -> 1456 bytes | |||
-rw-r--r-- | tools/testfiles/torderattr1.ddl | 23 | ||||
-rw-r--r-- | tools/testfiles/torderattr2.ddl | 23 | ||||
-rw-r--r-- | tools/testfiles/torderattr3.ddl | 23 | ||||
-rw-r--r-- | tools/testfiles/torderattr4.ddl | 23 |
5 files changed, 92 insertions, 0 deletions
diff --git a/tools/testfiles/torderattr.h5 b/tools/testfiles/torderattr.h5 Binary files differnew file mode 100644 index 0000000..48217aa --- /dev/null +++ b/tools/testfiles/torderattr.h5 diff --git a/tools/testfiles/torderattr1.ddl b/tools/testfiles/torderattr1.ddl new file mode 100644 index 0000000..8521898 --- /dev/null +++ b/tools/testfiles/torderattr1.ddl @@ -0,0 +1,23 @@ +############################# +Expected output for 'h5dump -H --sort_by=name --sort_order=ascending torderattr.h5' +############################# +HDF5 "torderattr.h5" { +GROUP "/" { + DATASET "dset" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + ATTRIBUTE "a" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "b" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "c" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + } +} +} diff --git a/tools/testfiles/torderattr2.ddl b/tools/testfiles/torderattr2.ddl new file mode 100644 index 0000000..968b630 --- /dev/null +++ b/tools/testfiles/torderattr2.ddl @@ -0,0 +1,23 @@ +############################# +Expected output for 'h5dump -H --sort_by=name --sort_order=descending torderattr.h5' +############################# +HDF5 "torderattr.h5" { +GROUP "/" { + DATASET "dset" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + ATTRIBUTE "c" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "b" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "a" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + } +} +} diff --git a/tools/testfiles/torderattr3.ddl b/tools/testfiles/torderattr3.ddl new file mode 100644 index 0000000..15e370a --- /dev/null +++ b/tools/testfiles/torderattr3.ddl @@ -0,0 +1,23 @@ +############################# +Expected output for 'h5dump -H --sort_by=creation_order --sort_order=ascending torderattr.h5' +############################# +HDF5 "torderattr.h5" { +GROUP "/" { + DATASET "dset" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + ATTRIBUTE "c" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "b" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "a" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + } +} +} diff --git a/tools/testfiles/torderattr4.ddl b/tools/testfiles/torderattr4.ddl new file mode 100644 index 0000000..3e94ebd --- /dev/null +++ b/tools/testfiles/torderattr4.ddl @@ -0,0 +1,23 @@ +############################# +Expected output for 'h5dump -H --sort_by=creation_order --sort_order=descending torderattr.h5' +############################# +HDF5 "torderattr.h5" { +GROUP "/" { + DATASET "dset" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + ATTRIBUTE "a" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "b" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + ATTRIBUTE "c" { + DATATYPE H5T_STD_U8LE + DATASPACE SCALAR + } + } +} +} |