2004-07-02 01:38:04 +08:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2007-02-08 03:56:21 +08:00
|
|
|
# Copyright by The HDF Group.
|
2004-07-02 01:38:04 +08:00
|
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
|
|
# the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
# of the source code distribution tree; Copyright.html can be found at the
|
|
|
|
# root level of an installed copy of the electronic HDF5 document set and
|
|
|
|
# is linked from the top-level documents page. It can also be found at
|
2007-02-08 03:56:21 +08:00
|
|
|
# http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from help@hdfgroup.org.
|
2004-07-02 01:38:04 +08:00
|
|
|
#
|
|
|
|
# Tests for the h5repack tool
|
2006-11-16 03:56:44 +08:00
|
|
|
#
|
|
|
|
# Modification:
|
|
|
|
# Pedro Vicente Nunes, 11/15/2006
|
|
|
|
# Added $FILEN variables for file names
|
|
|
|
#
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2012-08-24 00:07:43 +08:00
|
|
|
srcdir=@srcdir@
|
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
USE_FILTER_SZIP="@USE_FILTER_SZIP@"
|
2004-07-14 03:09:41 +08:00
|
|
|
USE_FILTER_DEFLATE="@USE_FILTER_DEFLATE@"
|
|
|
|
USE_FILTER_SHUFFLE="@USE_FILTER_SHUFFLE@"
|
|
|
|
USE_FILTER_FLETCHER32="@USE_FILTER_FLETCHER32@"
|
2005-02-16 03:21:39 +08:00
|
|
|
USE_FILTER_NBIT="@USE_FILTER_NBIT@"
|
2006-10-06 23:41:30 +08:00
|
|
|
USE_FILTER_SCALEOFFSET="@USE_FILTER_SCALEOFFSET@"
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2009-12-26 16:36:37 +08:00
|
|
|
TESTNAME=h5repack
|
|
|
|
EXIT_SUCCESS=0
|
|
|
|
EXIT_FAILURE=1
|
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
H5REPACK=h5repack # The tool name
|
|
|
|
H5REPACK_BIN=`pwd`/$H5REPACK # The path of the tool binary
|
|
|
|
|
2004-07-21 03:21:03 +08:00
|
|
|
H5DIFF=../h5diff/h5diff # The h5diff tool name
|
2010-09-16 02:32:07 +08:00
|
|
|
H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary
|
|
|
|
|
|
|
|
H5DUMP=../h5dump/h5dump # The h5dump tool name
|
|
|
|
H5DUMP_BIN=`pwd`/$H5DUMP # The path of the h5dump tool binary
|
|
|
|
|
|
|
|
GREP='grep'
|
2011-07-01 05:36:34 +08:00
|
|
|
CP='cp'
|
2012-08-01 23:37:40 +08:00
|
|
|
DIRNAME='dirname'
|
|
|
|
LS='ls'
|
|
|
|
AWK='awk'
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2008-06-20 22:17:16 +08:00
|
|
|
H5DETECTSZIP=testh5repack_detect_szip
|
|
|
|
H5DETECTSZIP_BIN=`pwd`/$H5DETECTSZIP
|
2004-11-03 03:14:14 +08:00
|
|
|
|
2006-11-16 03:56:44 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
nerrors=0
|
|
|
|
verbose=yes
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
# source dirs
|
|
|
|
SRC_TOOLS="$srcdir/.."
|
|
|
|
SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles"
|
2012-08-24 00:07:43 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
# testfiles source dirs for tools
|
|
|
|
SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES"
|
|
|
|
SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES"
|
|
|
|
SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles"
|
|
|
|
SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles"
|
|
|
|
SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles"
|
|
|
|
SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles"
|
|
|
|
SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles"
|
|
|
|
SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles"
|
|
|
|
|
|
|
|
TESTDIR=./testfiles
|
|
|
|
test -d $TESTDIR || mkdir $TESTDIR
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# test files
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# All the test files copy from source directory to test directory
|
|
|
|
# NOTE: Keep this framework to add/remove test files.
|
|
|
|
# Any test files from other tools can be used in this framework.
|
|
|
|
# This list are also used for checking exist.
|
|
|
|
# Comment '#' without space can be used.
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
LIST_HDF5_TEST_FILES="
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_attr.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_attr_refs.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_deflate.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_early.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_ext.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_fill.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_filters.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_fletcher.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_hlink.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_layout.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_layouto.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_layout2.h5
|
2012-04-12 04:57:10 +08:00
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_layout3.h5
|
2011-07-01 05:36:34 +08:00
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_named_dtypes.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_nbit.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_objs.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_refs.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_shuffle.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_soffset.h5
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_szip.h5
|
2012-01-10 05:24:50 +08:00
|
|
|
$SRC_H5DIFF_TESTFILES/h5diff_attr1.h5
|
2011-07-01 05:36:34 +08:00
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00000.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00001.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00002.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00003.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00004.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00005.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00006.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00007.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00008.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00009.h5
|
|
|
|
$SRC_TOOLS_TESTFILES/tfamily00010.h5
|
|
|
|
"
|
|
|
|
|
|
|
|
LIST_OTHER_TEST_FILES="
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack_ext.bin
|
|
|
|
$SRC_H5REPACK_TESTFILES/ublock.bin
|
|
|
|
$SRC_H5REPACK_TESTFILES/h5repack.info
|
|
|
|
$SRC_TOOLS_TESTFILES/h5repack_filters.h5.ddl
|
|
|
|
"
|
2008-06-20 22:17:16 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
#
|
|
|
|
# copy test files and expected output files from source dirs to test dir
|
|
|
|
#
|
|
|
|
COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES"
|
|
|
|
|
|
|
|
COPY_TESTFILES_TO_TESTDIR()
|
|
|
|
{
|
|
|
|
# copy test files. Used -f to make sure get a new copy
|
|
|
|
for tstfile in $COPY_TESTFILES
|
|
|
|
do
|
|
|
|
# ignore '#' comment
|
|
|
|
echo $tstfile | tr -d ' ' | grep '^#' > /dev/null
|
|
|
|
RET=$?
|
|
|
|
if [ $RET -eq 1 ]; then
|
2012-08-01 23:37:40 +08:00
|
|
|
# skip cp if srcdir is same as destdir
|
|
|
|
# this occurs when build/test performed in source dir and
|
|
|
|
# make cp fail
|
|
|
|
SDIR=`$DIRNAME $tstfile`
|
|
|
|
INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'`
|
|
|
|
INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'`
|
|
|
|
if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then
|
|
|
|
$CP -f $tstfile $TESTDIR
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Error: FAILED to copy $tstfile ."
|
|
|
|
|
|
|
|
# Comment out this to CREATE expected file
|
|
|
|
exit $EXIT_FAILURE
|
|
|
|
fi
|
2011-07-01 05:36:34 +08:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2012-03-31 07:24:31 +08:00
|
|
|
# Print a $* message left justified in a field of 70 characters
|
|
|
|
#
|
|
|
|
MESSAGE() {
|
|
|
|
SPACES=" "
|
|
|
|
echo "$* $SPACES" | cut -c1-70 | tr -d '\012'
|
|
|
|
}
|
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
# Print a line-line message left justified in a field of 70 characters
|
|
|
|
# beginning with the word "Testing".
|
|
|
|
#
|
|
|
|
TESTING() {
|
2012-03-31 07:24:31 +08:00
|
|
|
MESSAGE "Testing $*"
|
2004-07-02 01:38:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Print a line-line message left justified in a field of 70 characters
|
|
|
|
# beginning with the word "Verifying".
|
|
|
|
#
|
|
|
|
VERIFY() {
|
2012-04-12 04:57:10 +08:00
|
|
|
MESSAGE "Verifying $*"
|
2004-07-02 01:38:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Print a message that a test has been skipped (because a required filter
|
|
|
|
# was unavailable)
|
|
|
|
SKIP() {
|
|
|
|
TESTING $H5REPACK $@
|
|
|
|
echo " -SKIP-"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Call the h5diff tool
|
|
|
|
#
|
|
|
|
DIFFTEST()
|
|
|
|
{
|
2012-04-12 04:57:10 +08:00
|
|
|
VERIFY h5diff output $@
|
2009-10-07 13:08:05 +08:00
|
|
|
$RUNSERIAL $H5DIFF_BIN -q "$@"
|
2004-07-02 01:38:04 +08:00
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
2004-07-14 03:09:41 +08:00
|
|
|
echo "*FAILED*"
|
2004-07-02 01:38:04 +08:00
|
|
|
nerrors="`expr $nerrors + 1`"
|
|
|
|
else
|
|
|
|
echo " PASSED"
|
|
|
|
fi
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
}
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
# Call h5repack
|
|
|
|
#
|
2010-09-16 02:32:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
# call TOOLTEST_MAIN and delete $output file
|
2004-07-02 01:38:04 +08:00
|
|
|
TOOLTEST()
|
2010-09-16 02:32:07 +08:00
|
|
|
{
|
|
|
|
echo $@
|
|
|
|
TOOLTEST_MAIN $@
|
2011-07-01 05:36:34 +08:00
|
|
|
outfile=$TESTDIR/out.$1
|
2010-09-16 02:32:07 +08:00
|
|
|
rm -f $outfile
|
|
|
|
}
|
|
|
|
|
|
|
|
# TOOLTEST main function, doesn't delete $output file
|
|
|
|
TOOLTEST_MAIN()
|
2004-07-02 01:38:04 +08:00
|
|
|
{
|
|
|
|
# Run test.
|
|
|
|
TESTING $H5REPACK $@
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
infile=$TESTDIR/$1
|
|
|
|
outfile=$TESTDIR/out.$1
|
2004-07-02 01:38:04 +08:00
|
|
|
shift
|
2009-10-07 13:08:05 +08:00
|
|
|
$RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile
|
2004-07-02 01:38:04 +08:00
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
2009-10-07 13:08:05 +08:00
|
|
|
echo "*FAILED*"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2009-10-07 13:08:05 +08:00
|
|
|
echo " PASSED"
|
|
|
|
DIFFTEST $infile $outfile
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
2010-09-16 02:32:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------
|
|
|
|
# Verifying layouts of a dataset
|
|
|
|
VERIFY_LAYOUT_DSET()
|
|
|
|
{
|
2011-07-01 05:36:34 +08:00
|
|
|
outfile=$TESTDIR/out.$1
|
|
|
|
layoutfile=$TESTDIR/layout.$1
|
2010-09-16 02:32:07 +08:00
|
|
|
dset=$2
|
|
|
|
expectlayout=$3
|
|
|
|
|
|
|
|
#---------------------------------
|
|
|
|
# check the layout from a dataset
|
2012-04-12 04:57:10 +08:00
|
|
|
VERIFY "a dataset layout"
|
2011-10-08 04:16:20 +08:00
|
|
|
$RUNSERIAL $H5DUMP_BIN -d $dset -pH $outfile > $layoutfile
|
2010-09-16 02:32:07 +08:00
|
|
|
$GREP $expectlayout $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " PASSED"
|
|
|
|
else
|
|
|
|
echo " FAILED"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# clean up tmp files
|
2004-07-02 01:38:04 +08:00
|
|
|
rm -f $outfile
|
2010-09-16 02:32:07 +08:00
|
|
|
rm -f $layoutfile
|
|
|
|
}
|
|
|
|
|
|
|
|
#----------------------------------------
|
|
|
|
# Verifying layouts from entire file
|
|
|
|
VERIFY_LAYOUT_ALL()
|
|
|
|
{
|
2011-07-01 05:36:34 +08:00
|
|
|
outfile=$TESTDIR/out.$1
|
|
|
|
layoutfile=$TESTDIR/layout.$1
|
2010-09-16 02:32:07 +08:00
|
|
|
expectlayout=$2
|
|
|
|
|
|
|
|
#---------------------------------
|
|
|
|
# check the layout from a dataset
|
|
|
|
# check if the other layouts still exsit
|
2012-04-12 04:57:10 +08:00
|
|
|
VERIFY "layouts"
|
2010-09-16 02:32:07 +08:00
|
|
|
# if CONTIGUOUS
|
|
|
|
if [ $expectlayout = "CONTIGUOUS" ]; then
|
2011-10-08 04:16:20 +08:00
|
|
|
$RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile
|
2010-09-16 02:32:07 +08:00
|
|
|
$GREP "COMPACT" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
$GREP "CHUNKED" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
echo " PASSED"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# if COMPACT
|
|
|
|
if [ $expectlayout = "COMPACT" ]; then
|
2011-10-08 04:16:20 +08:00
|
|
|
$RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile
|
2010-09-16 02:32:07 +08:00
|
|
|
$GREP "CHUNKED" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
$GREP "CONTIGUOUS" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
echo " PASSED"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# if CHUNKED
|
|
|
|
if [ $expectlayout = "CHUNKED" ]; then
|
2011-10-08 04:16:20 +08:00
|
|
|
$RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile
|
2010-09-16 02:32:07 +08:00
|
|
|
$GREP "CONTIGUOUS" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
$GREP "COMPACT" $layoutfile > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo " FAILED"
|
|
|
|
else
|
|
|
|
echo " PASSED"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# clean up tmp files
|
|
|
|
rm -f $outfile
|
|
|
|
rm -f $layoutfile
|
2004-07-02 01:38:04 +08:00
|
|
|
}
|
|
|
|
|
2009-06-16 03:05:42 +08:00
|
|
|
# same as TOOLTEST, but it uses the old syntax -i input_file -o output_file
|
|
|
|
#
|
2008-05-21 22:53:53 +08:00
|
|
|
TOOLTEST0()
|
|
|
|
{
|
|
|
|
# Run test.
|
|
|
|
TESTING $H5REPACK $@
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
infile=$TESTDIR/$1
|
|
|
|
outfile=$TESTDIR/out.$1
|
2008-05-21 22:53:53 +08:00
|
|
|
shift
|
2009-10-07 13:08:05 +08:00
|
|
|
$RUNSERIAL $H5REPACK_BIN -i $infile -o $outfile "$@"
|
2008-05-21 22:53:53 +08:00
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
2009-10-07 13:08:05 +08:00
|
|
|
echo "*FAILED*"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
2008-05-21 22:53:53 +08:00
|
|
|
else
|
2009-10-07 13:08:05 +08:00
|
|
|
echo " PASSED"
|
|
|
|
DIFFTEST $infile $outfile
|
2008-05-21 22:53:53 +08:00
|
|
|
fi
|
|
|
|
rm -f $outfile
|
|
|
|
}
|
|
|
|
|
2009-06-16 03:05:42 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
# same as TOOLTEST, but it uses without -i -o options
|
2009-06-16 03:05:42 +08:00
|
|
|
# used to test the family driver, where these files reside
|
|
|
|
#
|
|
|
|
TOOLTEST1()
|
|
|
|
{
|
|
|
|
# Run test.
|
|
|
|
TESTING $H5REPACK $@
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
infile=$TESTDIR/$1
|
|
|
|
outfile=$TESTDIR/out.$1
|
2009-06-16 03:05:42 +08:00
|
|
|
shift
|
2009-10-07 13:08:05 +08:00
|
|
|
$RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile
|
2009-06-16 03:05:42 +08:00
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
2009-10-07 13:08:05 +08:00
|
|
|
echo "*FAILED*"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
2009-06-16 03:05:42 +08:00
|
|
|
else
|
2009-10-07 13:08:05 +08:00
|
|
|
echo " PASSED"
|
|
|
|
DIFFTEST $infile $outfile
|
2009-06-16 03:05:42 +08:00
|
|
|
fi
|
|
|
|
rm -f $outfile
|
|
|
|
}
|
2010-08-06 07:19:01 +08:00
|
|
|
|
2012-04-12 04:57:10 +08:00
|
|
|
# This is same as TOOLTEST() with comparing display output
|
|
|
|
# from -v option
|
2010-08-06 07:19:01 +08:00
|
|
|
#
|
|
|
|
TOOLTESTV()
|
|
|
|
{
|
|
|
|
# Run test.
|
|
|
|
TESTING $H5REPACK $@
|
2011-07-01 05:36:34 +08:00
|
|
|
expect="$TESTDIR/$1.ddl"
|
|
|
|
actual="$TESTDIR/`basename $1 .ddl`.out"
|
|
|
|
actual_err="$TESTDIR/`basename $1 .ddl`.err"
|
2010-08-06 07:19:01 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
infile=$TESTDIR/$1
|
|
|
|
outfile=$TESTDIR/out.$1
|
2010-08-06 07:19:01 +08:00
|
|
|
shift
|
|
|
|
$RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile >$actual 2>$actual_err
|
2012-04-12 04:57:10 +08:00
|
|
|
RET=$?
|
|
|
|
if [ $RET != 0 ] ; then
|
|
|
|
echo "*FAILED*"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
|
|
|
else
|
|
|
|
echo " PASSED"
|
|
|
|
DIFFTEST $infile $outfile
|
|
|
|
fi
|
|
|
|
|
|
|
|
# display output compare
|
2010-08-06 23:04:38 +08:00
|
|
|
STDOUT_FILTER $actual
|
2010-08-06 07:19:01 +08:00
|
|
|
cat $actual_err >> $actual
|
|
|
|
|
2012-04-12 04:57:10 +08:00
|
|
|
VERIFY output from $H5REPACK $@
|
2010-08-06 07:19:01 +08:00
|
|
|
if cmp -s $expect $actual; then
|
|
|
|
echo " PASSED"
|
|
|
|
else
|
|
|
|
echo "*FAILED*"
|
|
|
|
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
|
|
|
nerrors="`expr $nerrors + 1`"
|
|
|
|
test yes = "$verbose" && diff -c $expect $actual |sed 's/^/ /'
|
|
|
|
fi
|
|
|
|
|
2012-04-12 04:57:10 +08:00
|
|
|
rm -f $actual $actual_err
|
|
|
|
rm -f $outfile
|
2010-08-06 23:04:38 +08:00
|
|
|
}
|
|
|
|
|
2012-03-31 07:24:31 +08:00
|
|
|
# TOOLTEST_META:
|
|
|
|
# Test metadata block size option.
|
|
|
|
# Reason to create a function here is to localize all special steps related to
|
|
|
|
# metadata block size option in one place. This is a quick solution. More
|
|
|
|
# thought out solution needed when there is more time.
|
|
|
|
#
|
|
|
|
# $1: test input file
|
|
|
|
# $2:$: metadata options (either "-M size" or "--metadata_block_size=size")
|
|
|
|
#
|
|
|
|
# Algorithm:
|
|
|
|
# Run it once without the metadata option ($2-$);
|
|
|
|
# Save the result output file;
|
|
|
|
# Run it second time with the metadata option;
|
|
|
|
# Verify the output file of second run is larger than the one of 1st run.
|
|
|
|
TOOLTEST_META()
|
|
|
|
{
|
|
|
|
input_file=$1
|
|
|
|
outfile="$TESTDIR/out.$1"
|
|
|
|
|
|
|
|
# Use TOOLTEST_MAIN to run because it does not remove the output file.
|
|
|
|
# 1st run, without metadata option
|
|
|
|
TOOLTEST_MAIN $1
|
|
|
|
# get the size of the first output file
|
|
|
|
size1=`wc -c $outfile | cut -d' ' -f1`
|
|
|
|
|
|
|
|
# 2nd run with metadata option
|
|
|
|
TOOLTEST_MAIN $*
|
|
|
|
# get the size of the second output file
|
|
|
|
size2=`wc -c $outfile | cut -d' ' -f1`
|
|
|
|
|
|
|
|
# verify sizes.
|
|
|
|
MESSAGE "Verify the sizes of both output files ($size1 vs $size2)"
|
|
|
|
if [ $size1 -lt $size2 ]; then
|
|
|
|
# pass
|
|
|
|
echo " PASSED"
|
|
|
|
else
|
|
|
|
#fail
|
|
|
|
echo "*FAILED*"
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f $outfile
|
|
|
|
}
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
# This is different from $srcdir/../../bin/output_filter.sh
|
2010-08-06 23:04:38 +08:00
|
|
|
STDOUT_FILTER() {
|
|
|
|
result_file=$1
|
|
|
|
tmp_file=/tmp/h5test_tmp_$$
|
|
|
|
# Filter name of files.
|
|
|
|
cp $result_file $tmp_file
|
|
|
|
sed -e '/^Opening file/d' -e '/^Making file/d' \
|
|
|
|
< $tmp_file > $result_file
|
|
|
|
# cleanup
|
|
|
|
rm -f $tmp_file
|
2010-08-06 07:19:01 +08:00
|
|
|
}
|
2009-06-16 03:05:42 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
#
|
|
|
|
# The tests
|
|
|
|
# We use the files generated by h5repacktst
|
2004-07-14 03:09:41 +08:00
|
|
|
# Each run generates "<file>.out.h5" and the tool h5diff is used to
|
2004-07-02 01:38:04 +08:00
|
|
|
# compare the input and output files
|
|
|
|
#
|
2004-07-14 03:09:41 +08:00
|
|
|
# the tests are the same as the program h5repacktst, but run from the CLI
|
|
|
|
#
|
2004-07-02 01:38:04 +08:00
|
|
|
|
|
|
|
# See which filters are usable (and skip tests for filters we
|
|
|
|
# don't have). Do this by searching H5pubconf.h to see which
|
|
|
|
# filters are defined.
|
2004-11-03 03:14:14 +08:00
|
|
|
|
|
|
|
# detect whether the encoder is present.
|
|
|
|
USE_FILTER_SZIP_ENCODER="no";
|
|
|
|
if test $USE_FILTER_SZIP = "yes"; then
|
|
|
|
USE_FILTER_SZIP_ENCODER=`$RUNSERIAL $H5DETECTSZIP_BIN`
|
|
|
|
fi
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
##############################################################################
|
|
|
|
### T H E T E S T S
|
|
|
|
##############################################################################
|
|
|
|
# prepare for test
|
|
|
|
COPY_TESTFILES_TO_TESTDIR
|
|
|
|
|
2005-07-08 04:51:26 +08:00
|
|
|
# copy files (these files have no filters)
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_fill.h5
|
|
|
|
TOOLTEST h5repack_objs.h5
|
|
|
|
TOOLTEST h5repack_attr.h5
|
|
|
|
TOOLTEST h5repack_hlink.h5
|
|
|
|
TOOLTEST h5repack_layout.h5
|
|
|
|
TOOLTEST h5repack_early.h5
|
2006-11-16 03:56:44 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
# use h5repack_layout.h5 to write some filters (this file has no filters)
|
2004-07-02 01:38:04 +08:00
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# gzip with individual object
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f dset1:GZIP=1 -l dset1:CHUNK=20x10"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2004-07-02 01:38:04 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-14 03:09:41 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# gzip for all
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f GZIP=1"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# szip with individual object
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f dset2:SZIP=8,EC -l dset2:CHUNK=20x10"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2004-07-02 01:38:04 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-14 03:09:41 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# szip for all
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f SZIP=8,NN"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# shuffle with individual object
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f dset2:SHUF -l dset2:CHUNK=20x10"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SHUFFLE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2004-07-02 01:38:04 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-14 03:09:41 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# shuffle for all
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f SHUF"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SHUFFLE != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
2004-07-14 03:09:41 +08:00
|
|
|
|
|
|
|
# fletcher32 with individual object
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f dset2:FLET -l dset2:CHUNK=20x10"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_FLETCHER32 != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# fletcher32 for all
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f FLET"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_FLETCHER32 != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# all filters
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8,NN -f dset2:GZIP=1 -l dset2:CHUNK=20x10"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_SHUFFLE != "yes" -o $USE_FILTER_FLETCHER32 != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
2010-08-06 07:19:01 +08:00
|
|
|
|
|
|
|
# verbose gzip with individual object
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_filters.h5 -v -f /dset_deflate:GZIP=9"
|
2010-08-06 07:19:01 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2012-04-12 04:57:10 +08:00
|
|
|
# compare output
|
|
|
|
TOOLTESTV $arg
|
2010-08-06 07:19:01 +08:00
|
|
|
fi
|
2004-07-14 03:09:41 +08:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
# the following tests assume the input files have filters
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
# szip copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_szip.h5"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# szip remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_szip.h5 --filter=dset_szip:NONE"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# deflate copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_deflate.h5"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# deflate remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_deflate.h5 -f dset_deflate:NONE"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# shuffle copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_shuffle.h5"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SHUFFLE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# shuffle remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_shuffle.h5 -f dset_shuffle:NONE"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SHUFFLE != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# fletcher32 copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_fletcher.h5"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_FLETCHER32 != "yes" ; then
|
|
|
|
SKIP $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
else
|
2004-07-14 03:09:41 +08:00
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# fletcher32 remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_fletcher.h5 -f dset_fletcher32:NONE"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_FLETCHER32 != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
2005-02-16 03:21:39 +08:00
|
|
|
# nbit copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_nbit.h5"
|
2005-02-16 03:21:39 +08:00
|
|
|
if test $USE_FILTER_NBIT != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# nbit remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_nbit.h5 -f dset_nbit:NONE"
|
2005-02-16 03:21:39 +08:00
|
|
|
if test $USE_FILTER_NBIT != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# nbit add
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_nbit.h5 -f dset_int31:NBIT"
|
2005-02-16 03:21:39 +08:00
|
|
|
if test $USE_FILTER_NBIT != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
2006-10-06 23:41:30 +08:00
|
|
|
# scaleoffset copy
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_soffset.h5"
|
2005-02-24 01:52:03 +08:00
|
|
|
if test $USE_FILTER_SCALEOFFSET != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
2006-10-06 23:41:30 +08:00
|
|
|
# scaleoffset add
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_soffset.h5 -f dset_none:SOFF=31,IN"
|
2005-02-24 01:52:03 +08:00
|
|
|
if test $USE_FILTER_SCALEOFFSET != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# scaleoffset remove
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_soffset.h5 -f dset_scaleoffset:NONE"
|
2005-02-24 01:52:03 +08:00
|
|
|
if test $USE_FILTER_SCALEOFFSET != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
# remove all filters
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_filters.h5 -f NONE"
|
2005-02-24 01:52:03 +08:00
|
|
|
if test $USE_FILTER_FLETCHER32 != "yes" -o $USE_FILTER_DEFLATE != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SHUFFLE != "yes" -o $USE_FILTER_NBIT != "yes" -o $USE_FILTER_SCALEOFFSET != "yes" ; then
|
2004-07-14 03:09:41 +08:00
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
#filter conversions
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_deflate.h5 -f dset_deflate:SZIP=8,NN"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_szip.h5 -f dset_szip:GZIP=1"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_SZIP != "yes" -o $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
#limit
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -f GZIP=1 -m 1024"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
2004-07-02 01:38:04 +08:00
|
|
|
|
|
|
|
#file
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -e $TESTDIR/h5repack.info"
|
2004-07-14 03:09:41 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
2004-07-02 01:38:04 +08:00
|
|
|
SKIP $arg
|
2004-07-14 03:09:41 +08:00
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|
2004-07-14 03:09:41 +08:00
|
|
|
#########################################################
|
|
|
|
# layout options (these files have no filters)
|
|
|
|
#########################################################
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 --layout dset2:CHUNK=20x10
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset2 CHUNKED
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l CHUNK=20x10
|
|
|
|
VERIFY_LAYOUT_ALL h5repack_layout.h5 CHUNKED
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset2:CONTI
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset2 CONTIGUOUS
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l CONTI
|
|
|
|
VERIFY_LAYOUT_ALL h5repack_layout.h5 CONTIGUOUS
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset2:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset2 COMPACT
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l COMPA
|
|
|
|
VERIFY_LAYOUT_ALL h5repack_layout.h5 COMPACT
|
2004-07-14 03:09:41 +08:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# layout conversions (file has no filters)
|
|
|
|
###############################################################
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_compact:CONTI
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_compact CONTIGUOUS
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_compact:CHUNK=2x5
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_compact CHUNKED
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_compact:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_compact COMPACT
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_contiguous:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_contiguous COMPACT
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_contiguous:CHUNK=3x6
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_contiguous CHUNKED
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_contiguous:CONTI
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_contiguous CONTIGUOUS
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_chunk:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_chunk COMPACT
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_chunk:CONTI
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_chunk CONTIGUOUS
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout.h5 -l dset_chunk:CHUNK=18x13
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout.h5 dset_chunk CHUNKED
|
2010-09-16 02:32:07 +08:00
|
|
|
|
|
|
|
# test convert small size dataset ( < 1k) to compact layout without -m
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout2.h5 -l contig_small:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout2.h5 contig_small COMPACT
|
2010-09-16 02:32:07 +08:00
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST_MAIN h5repack_layout2.h5 -l chunked_small_fixed:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout2.h5 chunked_small_fixed COMPACT
|
[svn-r14158] Description:
Add regression test for h5repack with userblock
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
AIX/32 5.3 (copper) w/FORTRAN, w/parallel, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-09-27 23:18:21 +08:00
|
|
|
|
2012-04-12 04:57:10 +08:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Test file contains chunked datasets (need multiple dsets) with
|
|
|
|
# unlimited max dims. (HDFFV-7933)
|
|
|
|
# Use first dset to test.
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# chunk to chunk - specify chunk dim bigger than any current dim
|
|
|
|
TOOLTEST_MAIN h5repack_layout3.h5 -l chunk_unlimit1:CHUNK=100x300
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout3.h5 chunk_unlimit1 CHUNK
|
|
|
|
|
|
|
|
# chunk to contiguous
|
|
|
|
TOOLTEST_MAIN h5repack_layout3.h5 -l chunk_unlimit1:CONTI
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout3.h5 chunk_unlimit1 CONTI
|
|
|
|
|
|
|
|
# chunk to compact - convert big dataset (should be > 64k) for this purpose,
|
|
|
|
# should remain as original layout (chunk)
|
|
|
|
TOOLTEST_MAIN h5repack_layout3.h5 -l chunk_unlimit1:COMPA
|
|
|
|
VERIFY_LAYOUT_DSET h5repack_layout3.h5 chunk_unlimit1 CHUNK
|
|
|
|
|
[svn-r14158] Description:
Add regression test for h5repack with userblock
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
AIX/32 5.3 (copper) w/FORTRAN, w/parallel, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-09-27 23:18:21 +08:00
|
|
|
# Native option
|
2009-04-21 00:37:47 +08:00
|
|
|
# Do not use FILE1, as the named dtype will be converted to native, and h5diff will
|
|
|
|
# report a difference.
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_fill.h5 -n
|
|
|
|
TOOLTEST h5repack_attr.h5 -n
|
2004-07-14 03:09:41 +08:00
|
|
|
|
2007-11-30 03:28:25 +08:00
|
|
|
|
2008-05-21 03:05:28 +08:00
|
|
|
# latest file format with long switches. use FILE4=h5repack_layout.h5 (no filters)
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --native --latest --compact=8 --indexed=6 --ssize=8[:dtype]"
|
2007-11-30 03:56:55 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2010-09-16 02:32:07 +08:00
|
|
|
TOOLTEST_MAIN $arg
|
2011-07-01 05:36:34 +08:00
|
|
|
VERIFY_LAYOUT_ALL h5repack_layout.h5 CHUNKED
|
2007-11-30 03:56:55 +08:00
|
|
|
fi
|
|
|
|
|
2008-05-21 03:05:28 +08:00
|
|
|
# latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters)
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]"
|
2008-05-21 03:05:28 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
2010-09-16 02:32:07 +08:00
|
|
|
TOOLTEST_MAIN $arg
|
2011-07-01 05:36:34 +08:00
|
|
|
VERIFY_LAYOUT_ALL h5repack_layout.h5 CHUNKED
|
2008-05-21 03:05:28 +08:00
|
|
|
fi
|
|
|
|
|
2007-11-30 03:56:55 +08:00
|
|
|
# several global filters
|
|
|
|
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 --filter GZIP=1 --filter SHUF"
|
2007-11-30 03:56:55 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" -o $USE_FILTER_SHUFFLE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST $arg
|
|
|
|
fi
|
2007-11-30 03:28:25 +08:00
|
|
|
|
2008-05-21 22:53:53 +08:00
|
|
|
# syntax of -i infile -o outfile
|
|
|
|
# latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters)
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_layout.h5 -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]"
|
2008-05-21 22:53:53 +08:00
|
|
|
if test $USE_FILTER_DEFLATE != "yes" ; then
|
|
|
|
SKIP $arg
|
|
|
|
else
|
|
|
|
TOOLTEST0 $arg
|
|
|
|
fi
|
|
|
|
|
2008-08-22 23:53:07 +08:00
|
|
|
# add a userblock to file
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_objs.h5 -u ublock.bin -b 2048"
|
2008-08-22 23:53:07 +08:00
|
|
|
TOOLTEST $arg
|
|
|
|
|
2008-08-29 03:47:26 +08:00
|
|
|
# add alignment
|
2011-07-01 05:36:34 +08:00
|
|
|
arg="h5repack_objs.h5 -t 1 -a 1 "
|
2008-08-29 03:47:26 +08:00
|
|
|
TOOLTEST $arg
|
|
|
|
|
2009-02-03 09:41:51 +08:00
|
|
|
# Check repacking file with old version of layout message (should get upgraded
|
|
|
|
# to new version and be readable, etc.)
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_layouto.h5
|
2007-11-30 03:28:25 +08:00
|
|
|
|
[svn-r16614] 3. #1501 (B1) tools bug if dataset is larger than H5TOOLS_BUFSIZE limit.
ISSUE : the tools use the following formula to read by hyperslabs: hyperslab_size[i] = MIN( dim_size[i], H5TOOLS_BUFSIZE / datum_size) where H5TOOLS_BUFSIZE is a constant defined of 1024K. This is OK as long as the datum_size does not exceed 1024K, otherwise we have a hyperslab size of 0 (since 1024K/(greater than 1024K) = 0). This affects h5dump. h5repack, h5diff
SOLUTION: add a check for a 0 size and define as 1 if so.
TEST FOR H5DUMP: Defined a case in the h5dump test generator program of such a type (an array type of doubles with a large array dimension, that was the case the user reported). Since the written file commited in svn would be around 1024K, opted for not writing the data (the part of the code where the hyperslab is defined is executed, since h5dump always reads the files). Defined a macro WRITE_ARRAY to enable such writing if needed. Added a run on the h5dump shell script. Added 2 new files to svn: tools/testfiles/tarray8.ddl, tools/testfiles/tarray8.h5. NOTE: while doing this I thought of adding this dataset case to an existing file, but that would add the large array output to those files (the ddls). The issue is that the file list is increasing.
TEST FOR H5DIFF: for h5diff the check for reading by hyperslabs is H5TOOLS_MALLOCSIZE (128 * H5TOOLS_BUFSIZE) or 128 Mb. This makes it not possible to add such a file to svn, so used the same method as h5dump (only write the dataset if WRITE_ARRAY is defined). As opposed to h5dump, the hyperslab code is NOT executed when the dataset is empty (dataset is not read). Added the new dataset to existing files and shell run (tools/h5diff/testfiles/h5diff_dset1.h5 and tools/h5diff/testfiles/h5diff_dset2.h5 and output in tools/h5diff/testfiles/h5diff_80.txt).
TEST FOR H5REPACK: similar issue as h5diff with the difference that the hyperslab code is run. Added a run to the shell script (with a filter, otherwise the code uses H5Ocopy).
tested: linux (h5commitest failed , apparently it did not detect the code changes in /tools/lib that fix the bug: the error in an assertion in the hyperslab of 0. I am sure that making h5ccomitest --distclean will detect the new code , but don't want to wait more 3 hours :-) )
2009-03-26 04:28:50 +08:00
|
|
|
# test for datum size > H5TOOLS_MALLOCSIZE
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_objs.h5 -f GZIP=1
|
[svn-r16614] 3. #1501 (B1) tools bug if dataset is larger than H5TOOLS_BUFSIZE limit.
ISSUE : the tools use the following formula to read by hyperslabs: hyperslab_size[i] = MIN( dim_size[i], H5TOOLS_BUFSIZE / datum_size) where H5TOOLS_BUFSIZE is a constant defined of 1024K. This is OK as long as the datum_size does not exceed 1024K, otherwise we have a hyperslab size of 0 (since 1024K/(greater than 1024K) = 0). This affects h5dump. h5repack, h5diff
SOLUTION: add a check for a 0 size and define as 1 if so.
TEST FOR H5DUMP: Defined a case in the h5dump test generator program of such a type (an array type of doubles with a large array dimension, that was the case the user reported). Since the written file commited in svn would be around 1024K, opted for not writing the data (the part of the code where the hyperslab is defined is executed, since h5dump always reads the files). Defined a macro WRITE_ARRAY to enable such writing if needed. Added a run on the h5dump shell script. Added 2 new files to svn: tools/testfiles/tarray8.ddl, tools/testfiles/tarray8.h5. NOTE: while doing this I thought of adding this dataset case to an existing file, but that would add the large array output to those files (the ddls). The issue is that the file list is increasing.
TEST FOR H5DIFF: for h5diff the check for reading by hyperslabs is H5TOOLS_MALLOCSIZE (128 * H5TOOLS_BUFSIZE) or 128 Mb. This makes it not possible to add such a file to svn, so used the same method as h5dump (only write the dataset if WRITE_ARRAY is defined). As opposed to h5dump, the hyperslab code is NOT executed when the dataset is empty (dataset is not read). Added the new dataset to existing files and shell run (tools/h5diff/testfiles/h5diff_dset1.h5 and tools/h5diff/testfiles/h5diff_dset2.h5 and output in tools/h5diff/testfiles/h5diff_80.txt).
TEST FOR H5REPACK: similar issue as h5diff with the difference that the hyperslab code is run. Added a run to the shell script (with a filter, otherwise the code uses H5Ocopy).
tested: linux (h5commitest failed , apparently it did not detect the code changes in /tools/lib that fix the bug: the error in an assertion in the hyperslab of 0. I am sure that making h5ccomitest --distclean will detect the new code , but don't want to wait more 3 hours :-) )
2009-03-26 04:28:50 +08:00
|
|
|
|
2009-04-21 00:37:47 +08:00
|
|
|
# Check repacking file with committed datatypes in odd configurations
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_named_dtypes.h5
|
2009-04-21 00:37:47 +08:00
|
|
|
|
2009-06-16 03:05:42 +08:00
|
|
|
# tests family driver (file is located in common testfiles folder, uses TOOLTEST1
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST1 tfamily%05d.h5
|
2009-06-16 03:05:42 +08:00
|
|
|
|
2010-03-26 01:29:51 +08:00
|
|
|
# test various references (bug 1814 and 1726)
|
2011-07-01 05:36:34 +08:00
|
|
|
TOOLTEST h5repack_refs.h5
|
2010-03-19 05:38:09 +08:00
|
|
|
|
2011-09-15 05:04:41 +08:00
|
|
|
# test attribute with various references (bug1797 / HDFFV-5932)
|
2010-03-26 05:40:59 +08:00
|
|
|
# the references in attribute of compund or vlen datatype
|
2011-09-15 05:04:41 +08:00
|
|
|
TOOLTEST h5repack_attr_refs.h5
|
2010-03-26 05:40:59 +08:00
|
|
|
|
2012-01-10 05:24:50 +08:00
|
|
|
# Add test for memory leak in attirbute. This test is verified by CTEST.
|
|
|
|
# 1. leak from vlen string
|
|
|
|
# 2. leak from compound type without reference member
|
|
|
|
# (HDFFV-7840, )
|
|
|
|
# Note: this test is experimental for sharing test file among tools
|
|
|
|
TOOLTEST h5diff_attr1.h5
|
|
|
|
|
2012-04-12 04:57:10 +08:00
|
|
|
# tests for metadata block size option
|
2012-03-31 07:24:31 +08:00
|
|
|
TOOLTEST_META h5repack_layout.h5 --metadata_block_size=8192
|
2012-03-29 18:49:38 +08:00
|
|
|
|
2004-07-02 01:38:04 +08:00
|
|
|
if test $nerrors -eq 0 ; then
|
2009-12-26 16:36:37 +08:00
|
|
|
echo "All $TESTNAME tests passed."
|
|
|
|
exit $EXIT_SUCCESS
|
|
|
|
else
|
|
|
|
echo "$TESTNAME tests failed with $nerrors errors."
|
|
|
|
exit $EXIT_FAILURE
|
2004-07-02 01:38:04 +08:00
|
|
|
fi
|
|
|
|
|