diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-09-18 16:25:47 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-09-18 16:25:47 (GMT) |
commit | b72f6dc8367d406d9c678f62953a75056a37891c (patch) | |
tree | cff0e4ef6bb25e357be5e7d0ba0794d17715396a /tools/h5copy/testh5copy.sh | |
parent | d5d664a56c42ec8ebb7863abc80c137ac5570f43 (diff) | |
download | hdf5-b72f6dc8367d406d9c678f62953a75056a37891c.zip hdf5-b72f6dc8367d406d9c678f62953a75056a37891c.tar.gz hdf5-b72f6dc8367d406d9c678f62953a75056a37891c.tar.bz2 |
[svn-r12671]
added a test file generator program for h5copy, modified test script to use
that file, added binary file to repo
tested on heping, shanti
Diffstat (limited to 'tools/h5copy/testh5copy.sh')
-rw-r--r-- | tools/h5copy/testh5copy.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/h5copy/testh5copy.sh b/tools/h5copy/testh5copy.sh index ec8412a..eef1834 100644 --- a/tools/h5copy/testh5copy.sh +++ b/tools/h5copy/testh5copy.sh @@ -23,6 +23,9 @@ H5COPY_BIN=`pwd`/$H5COPY # The path of the tool binary H5DIFF=../h5diff/h5diff # The h5diff tool name H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary +TESTFILE=$srcdir/../testfiles/h5copytst.h5 +FILEOUT=h5copytst.out.h5 + nerrors=0 # The build (current) directory might be different than the source directory. @@ -117,7 +120,8 @@ H5DIFFTEST() ### T H E T E S T S ### ############################################################################## -TOOLTEST -i $srcdir/../testfiles/test1.h5 -o test1.out.h5 -v -s array -d array +TOOLTEST -i $TESTFILE -o $FILEOUT -v -s simple -d simple +TOOLTEST -i $TESTFILE -o $FILEOUT -v -s chunk -d chunk |