Files
hdf5/windows/tools/h5dump/testh5dump.bat
Allen Byrne 49461f1035 [svn-r22873] Update test testh5copy.bat file with changes made to linux test script.
Update testh5dump.bat file with corrections to which TOOLTEST version used and adjust for windows specific conditions

Tested: windows
2012-10-08 15:01:35 -05:00

992 lines
41 KiB
Batchfile

@echo off
rem
rem Copyright by The HDF Group.
rem Copyright by the Board of Trustees of the University of Illinois.
rem All rights reserved.
rem
rem This file is part of HDF5. The full HDF5 copyright notice, including
rem terms governing use, modification, and redistribution, is contained in
rem the files COPYING and Copyright.html. COPYING can be found at the root
rem of the source code distribution tree; Copyright.html can be found at the
rem root level of an installed copy of the electronic HDF5 document set and
rem is linked from the top-level documents page. It can also be found at
rem http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
rem access to either file, you may request a copy from help@hdfgroup.org.
rem
rem Tests for the h5dump tool
rem
rem Created: Scott Wegner, 8/23/07
rem Modified: Scott Wegner, 5/12/08
rem
setlocal enabledelayedexpansion
pushd %~dp0
set h5pubconf=%CD%\..\..\src\h5pubconf.h
rem Determine which filters are available
rem On Windows, the function :detect_filter sets these for us
call :detect_filter szip
call :detect_filter deflate
call :detect_filter shuffle
call :detect_filter fletcher32
call :detect_filter nbit
call :detect_filter scaleoffset
rem The tool name
set dumper=h5dump%2
rem The path of the tool library
set dumper_bin=%CD%\..\%dumper%\%1\%dumper%
set testdir=%CD%\..\testfiles
rem The h5diff tool name
set h5diff=..\h5diff%2\%1\h5diff%2
rem The path of the h5diff tool binary
set h5diff_bin=%CD%\%h5diff%
rem The h5import tool name
set h5import=..\h5import%2\%1\h5import%2
rem The path of the h5import tool binary
set h5import_bin=%CD%\%h5import%
set nerrors=0
set verbose=yes
set srcdir=%CD%
if not exist %testdir% mkdir %testdir%
goto main
rem Print a line-line message left justified in a field of 70 characters
rem beginning with the word "Testing".
rem
:testing
set test_msg=Testing %dumper%
for %%a in (%*) do (
if %%a neq PASSED (
if %%a neq *FAILED* (
set test_msg=!test_msg! %%~nxa
) )
)
rem We need to replace PERCENT here with "%" for tests that use a percent
rem sign. --SJW 5/12/08
set test_msg=!test_msg:PERCENT=%%!
echo.%test_msg:~0,69% %1
exit /b
rem Run a test and print PASS or *FAIL*. If a test fails then increment
rem the `nerrors' global variable and (if $verbose is set) display the
rem difference between the actual output and the expected output. The
rem expected output is given as the first argument to this function and
rem the actual output file is calculated by replacing the `.ddl' with
rem `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a
rem non-zero value.
rem
:tooltest
set expect=%CD%\..\testfiles\%1
set actual=%CD%\..\testfiles\%~n1.out
set actual_err=%CD%\..\testfiles\%~n1.err
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/23/07
set params=%*
rem If there is not 2nd parameter, that means we have no filename, which
rem implies that we are on the "tnofilename" test. Make sure we remove the
rem expected output from the params, and add a space. --SJW 8/27/07
if "%2"=="" (
set params=
) else (
set params=!params:* =!
)
rem Run test.
(
rem We need to replace PERCENT here with "%" for tests that use percents
rem Also remove quotes here, because Linux 'echo' command strips them.
rem --SJW 8/24/07
pushd %CD%\..\testfiles
%dumper_bin% !params:PERCENT=%%!
popd
) > %actual% 2> %actual_err%
type %actual_err% >> %actual%
if not exist %expect% (
rem Create the expect file if it doesn't yet exist.
call :testing CREATED %params%
copy /y %actual% %expect% > nul
) else (
fc /w %expect% %actual% > nul
if !errorlevel! equ 0 (
call :testing PASSED %params%
) else (
call :testing *FAILED* %params%
echo. Expected results ^(*.ddl^) differs from actual results ^(*.out^)
set /a nerrors=!nerrors!+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
)
rem Clean up output file
if not defined hdf5_nocleanup (
del /f %actual% %actual_err%
)
exit /b
rem same as TOOLTEST but does not print the header Expected output
rem use for the binary tests that expect a full path in -o
:tooltest1
set expect=%srcdir%\..\testfiles\%1
set actual=%CD%\..\testfiles\%~n1.out
set actual_err=%CD%\..\testfiles\%~n1.err
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/23/07
set params=%*
rem If there is not 2nd parameter, that means we have no filename, which
rem implies that we are on the "tnofilename" test. Make sure we remove the
rem expected output from the params, and add a space. --SJW 8/27/07
if "%2"=="" (
set params=
) else (
set params=!params:* =!
)
rem Run test.
(
pushd %CD%\..\testfiles
%dumper_bin% !params:PERCENT=%%!
popd
) > %actual% 2> %actual_err%
type %actual_err% >> %actual%
if not exist %expect% (
rem Create the expect file if it doesn't yet exist.
call :testing CREATED %params%
copy /y %actual% %expect% > nul
) else (
fc /w %expect% %actual% > nul
if !errorlevel! equ 0 (
call :testing PASSED %params%
) else (
call :testing *FAILED* %params%
echo. Expected results ^(*.ddl^) differs from actual results ^(*.out^)
set /a nerrors=!nerrors!+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
)
rem Clean up output file
if not defined hdf5_nocleanup (
del /f %actual% %actual_err%
)
exit /b
rem same as TOOLTEST but filters error stack outp
rem Extract file name, line number, version and thread IDs because they may be different
:tooltest3
set expect=%CD%\..\testfiles\%1
set expect_parsed=%CD%\..\testfiles\%~n1.parsed
set actual=%CD%\..\testfiles\%~n1.out
set actual_err=%CD%\..\testfiles\%~n1.err
set actual_ext=%CD%\..\testfiles\%~n1.ext
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/23/07
set params=%*
rem If there is not 2nd parameter, that means we have no filename, which
rem implies that we are on the "tnofilename" test. Make sure we remove the
rem expected output from the params, and add a space. --SJW 8/27/07
if "%2"=="" (
set params=
) else (
set params=!params:* =!
)
rem Run test.
(
rem We need to replace PERCENT here with "%" for tests that use percents
rem Also remove quotes here, because Linux 'echo' command strips them.
rem --SJW 8/24/07
pushd %CD%\..\testfiles
%dumper_bin% !params:PERCENT=%%!
popd
) > %actual% 2> %actual_err%
rem Extract file name, line number, version and thread IDs because they may
rem be different
rem Also filter out lines starting with *****, because Windows treats these
rem as wildcards, and parses as filenames. -SJW, 8/16/07
type nul > %actual_ext%
for /f "delims=" %%a in (%actual_err%) do (
set line_tmp=%%a
if not "!line_tmp:~0,9!"=="*********" (
set line=
set last_token=
set skip=
for %%b in (%%a) do (
if not defined skip (
if "!last_token!"=="thread" (
set line=!line! ^(IDs^):
) else if "!last_token!"=="some" (
if "%%b"=="thread:" (
set line=!line! thread ^(IDs^):
set skip=yes
) else (
set line=!line! some %%b
)
) else if "!last_token:~0,2!"=="#0" (
set line=!line! ^(file name^)
) else if "!last_token!"=="HDF5" (
rem Check if we wrap parenthesis around "version (number)"
set version_token=%%b
if "!version_token:~0,1!"=="(" (
set line=!line! ^(version ^(number^)^)
) else (
set line=!line! version ^(number^).
)
) else if "!last_token!"=="line" (
set line=!line! ^(number^)
) else if not "%%b"=="some" (
set line=!line! %%b
)
set last_token=%%b
)
)
echo.!line!>>%actual_ext%
)
)
type %actual_ext% >> %actual%
rem We parse through our expected output file in a similar way, because
rem Windows will parse out commas and other special characters as well.
rem -SJW, 8/16/07
type nul > %expect_parsed%
for /f "delims=" %%b in (%expect%) do (
set line_tmp=%%b
if not "!line_tmp:~0,9!"=="*********" (
set line=
for %%c in (%%b) do (
set line=!line! %%c
)
echo.!line!>>%expect_parsed%
)
)
fc /w %expect_parsed% %actual% > nul
if errorlevel 0 (
if not exist %expect% (
rem Create the expect file if it doesn't yet exist.
call :testing CREATED %params%
copy /y %actual% %expect% > nul
) else (
fc /w %expect% %actual% > nul
if !errorlevel! equ 0 (
call :testing PASSED %params%
) else (
call :testing *FAILED* %params%
echo. Expected results ^(*.ddl^) differs from actual results ^(*.out^)
set /a nerrors=!nerrors!+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
)
) else (
call :testing *FAILED* %test_err%
echo. Expected result differs from actual result
set /a nerrors=%nerrors%+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
rem Clean up output file
if not defined hdf5_nocleanup (
del /f %actual% %actual_err%
)
exit /b
rem same as TOOLTEST3 but filters error stack outp and compares external err file
rem Extract file name, line number, version and thread IDs because they may be different
:tooltest4
set expect=%CD%\..\testfiles\%1
set expect_err=%CD%\errfiles\%~n1.err
set expect_parsed=%CD%\..\testfiles\%~n1.parsed
set actual=%CD%\..\testfiles\%~n1.out
set actual_err=%CD%\..\testfiles\%~n1.oerr
set actual_ext=%CD%\..\testfiles\%~n1.ext
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/23/07
set params=%*
rem If there is not 2nd parameter, that means we have no filename, which
rem implies that we are on the "tnofilename" test. Make sure we remove the
rem expected output from the params, and add a space. --SJW 8/27/07
if "%2"=="" (
set params=
) else (
set params=!params:* =!
)
rem Run test.
(
rem We need to replace PERCENT here with "%" for tests that use percents
rem Also remove quotes here, because Linux 'echo' command strips them.
rem --SJW 8/24/07
pushd %CD%\..\testfiles
%dumper_bin% !params:PERCENT=%%!
popd
) > %actual% 2> %actual_err%
rem Extract file name, line number, version and thread IDs because they may
rem be different
rem Also filter out lines starting with *****, because Windows treats these
rem as wildcards, and parses as filenames. -SJW, 8/16/07
type nul > %actual_ext%
for /f "delims=" %%a in (%actual_err%) do (
set line_tmp=%%a
if not "!line_tmp:~0,9!"=="*********" (
set line=
set last_token=
set skip=
for %%b in (%%a) do (
if not defined skip (
if "!last_token!"=="thread" (
set line=!line! ^(IDs^):
) else if "!last_token!"=="some" (
if "%%b"=="thread:" (
set line=!line! thread ^(IDs^):
set skip=yes
) else (
set line=!line! some %%b
)
) else if "!last_token:~0,2!"=="#0" (
set line=!line! ^(file name^)
) else if "!last_token!"=="HDF5" (
rem Check if we wrap parenthesis around "version (number)"
set version_token=%%b
if "!version_token:~0,1!"=="(" (
set line=!line! ^(version ^(number^)^)
) else (
set line=!line! version ^(number^).
)
) else if "!last_token!"=="HDF5:tools" (
rem Check if we wrap parenthesis around "version (number)"
set version_token=%%b
if "!version_token:~0,1!"=="(" (
set line=!line! ^(version ^(number^)^)
) else (
set line=!line! version ^(number^).
)
) else if "!last_token!"=="line" (
set line=!line! ^(number^)
) else if not "%%b"=="some" (
set line=!line! %%b
)
set last_token=%%b
)
)
echo.!line!>>%actual_ext%
)
)
rem type %actual_ext% >> %actual%
rem We parse through our expected output file in a similar way, because
rem Windows will parse out commas and other special characters as well.
rem -SJW, 8/16/07
type nul > %expect_parsed%
for /f "delims=" %%b in (%expect%) do (
set line_tmp=%%b
if not "!line_tmp:~0,9!"=="*********" (
set line=
for %%c in (%%b) do (
set line=!line! %%c
)
echo.!line!>>%expect_parsed%
)
)
fc /w %expect_parsed% %actual% > nul
if errorlevel 0 (
if not exist %expect% (
rem Create the expect file if it doesn't yet exist.
call :testing CREATED %params%
copy /y %actual% %expect% > nul
) else (
fc /w %expect% %actual% > nul
if !errorlevel! equ 0 (
fc /w %expect_err% %actual_ext% > nul
if !errorlevel! equ 0 (
call :testing PASSED %params%
) else (
call :testing *FAILED* %params%
echo. Expected results ^(*.err^) differs from actual results ^(*.oerr^)
set /a nerrors=!nerrors!+1
if "yes"=="%verbose%" fc /w %expect_err% %actual_ext%
)
) else (
call :testing *FAILED* %params%
echo. Expected results ^(*.ddl^) differs from actual results ^(*.out^)
set /a nerrors=!nerrors!+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
)
) else (
call :testing *FAILED* %test_err%
echo. Expected result differs from actual result
set /a nerrors=%nerrors%+1
if "yes"=="%verbose%" fc /w %expect% %actual%
)
rem Clean up output file
if not defined hdf5_nocleanup (
del /f %actual% %actual_err%
)
exit /b
rem Print a "SKIP" message
:skip
call :testing -SKIP- %*
exit /b
rem Print a line-line message left justified in a field of 70 characters
rem
:print_h5diff
set test_msg=Running h5diff
for %%a in (%*) do (
if %%a neq PASSED (
if %%a neq *FAILED* (
set test_msg=!test_msg! %%~nxa
) )
)
set test_msg=%test_msg%
echo.%test_msg:~0,69% %1
exit /b
rem Call the h5diff tool
rem
:difftest
(
pushd %CD%\..\testfiles
%h5diff_bin% %* -q
popd
)
if %errorlevel% neq 0 (
call :print_h5diff *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :print_h5diff PASSED %*
)
exit /b
rem Print a line-line message left justified in a field of 70 characters
rem beginning with the word "Verifying".
rem
:print_h5import
set test_msg=Running h5import
for %%a in (%*) do (
if %%a neq PASSED (
if %%a neq *FAILED* (
set test_msg=!test_msg! %%~nxa
) )
)
set test_msg=%test_msg%
echo.%test_msg:~0,69% %1
exit /b
rem Call the h5import tool
rem
:importtest
rem Remove the output hdf5 file if it exists
set hdf5_file=%CD%\..\testfiles\%5
if exist %hdf5_file% (
del /f %hdf5_file%
)
(
pushd %CD%\..\testfiles
%h5import_bin% %*
popd
)
if %errorlevel% neq 0 (
call :print_h5import *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :print_h5import PASSED %*
)
exit /b
rem This is a Windows-specific function that detects if the filter passed
rem should be enabled for this test script. It searches H5pubconf.h for the
rem string "#define H5_HAVE_FILTER_%1" and sets the variable "use_filter_%1"
rem accordingly. On other platforms, this variable is set in the Makefile.
rem If we find a better way to test this in the future, we should use it.
rem --SJW 9/4/07
:detect_filter
findstr /b /i /c:"#define H5_HAVE_FILTER_%1" %h5pubconf% > nul
if %errorlevel% equ 0 (
set use_filter_%1=yes
) else (
set use_filter_%1=no
)
exit /b
rem ############################################################################
rem ############################################################################
rem # T H E T E S T S ###
rem ############################################################################
rem ############################################################################
:main
rem call :tooltest h5dump-help.txt -h
rem test for signed/unsigned datasets
call :tooltest packedbits.ddl --enable-error-stack packedbits.h5
rem test for displaying groups
call :tooltest tgroup-1.ddl --enable-error-stack tgroup.h5
rem test for displaying the selected groups
call :tooltest4 tgroup-2.ddl --enable-error-stack --group=/g2 --group / -g /y tgroup.h5
rem test for displaying simple space datasets
call :tooltest tdset-1.ddl --enable-error-stack tdset.h5
rem test for displaying selected datasets
call :tooltest4 tdset-2.ddl --enable-error-stack -H -d dset1 -d /dset2 --dataset=dset3 tdset.h5
rem test for displaying attributes
call :tooltest tattr-1.ddl --enable-error-stack tattr.h5
rem test for displaying the selected attributes of string type and scalar space
call :tooltest tattr-2.ddl --enable-error-stack -a \/attr1 --attribute /attr4 --attribute=/attr5 tattr.h5
rem test for header and error messages
call :tooltest4 tattr-3.ddl --enable-error-stack --header -a /attr2 --attribute=/attr tattr.h5
rem test for displaying attributes in shared datatype (also in group and dataset)
call :tooltest tnamed_dtype_attr.ddl --enable-error-stack tnamed_dtype_attr.h5
rem test for displaying soft links and user-defined links
call :tooltest tslink-1.ddl --enable-error-stack tslink.h5
call :tooltest tudlink-1.ddl --enable-error-stack tudlink.h5
rem test for displaying the selected link
call :tooltest tslink-2.ddl --enable-error-stack -l slink2 tslink.h5
call :tooltest tudlink-2.ddl --enable-error-stack -l udlink2 tudlink.h5
rem test for displaying dangling soft links
call :tooltest4 tslink-D.ddl --enable-error-stack -d /slink1 tslink.h5
rem tests for hard links
call :tooltest thlink-1.ddl --enable-error-stack thlink.h5
call :tooltest thlink-2.ddl --enable-error-stack -d /g1/dset2 --dataset /dset1 --dataset=/g1/g1.1/dset3 thlink.h5
call :tooltest thlink-3.ddl --enable-error-stack -d /g1/g1.1/dset3 --dataset /g1/dset2 --dataset=/dset1 thlink.h5
call :tooltest thlink-4.ddl --enable-error-stack -g /g1 thlink.h5
call :tooltest thlink-5.ddl --enable-error-stack -d /dset1 -g /g2 -d /g1/dset2 thlink.h5
rem tests for compound data types
call :tooltest tcomp-1.ddl --enable-error-stack tcompound.h5
rem test for named data types
call :tooltest tcomp-2.ddl --enable-error-stack -t /type1 --datatype /type2 --datatype=/group1/type3 tcompound.h5
rem test for unamed type
call :tooltest4 tcomp-3.ddl --enable-error-stack -t /#6632 -g /group2 tcompound.h5
rem test complicated compound datatype
call :tooltest tcomp-4.ddl --enable-error-stack tcompound_complex.h5
rem test for the nested compound type
call :tooltest tnestcomp-1.ddl --enable-error-stack tnestedcomp.h5
rem test for options
rem call :tooltest4 tall-1.ddl --enable-error-stack tall.h5
call :tooltest tall-2.ddl --enable-error-stack --header -g /g1/g1.1 -a attr2 tall.h5
call :tooltest tall-3.ddl --enable-error-stack -d /g2/dset2.1 -l /g1/g1.2/g1.2.1/slink tall.h5
rem test for loop detection
call :tooltest tloop-1.ddl --enable-error-stack tloop.h5
rem test for string
call :tooltest tstr-1.ddl --enable-error-stack tstr.h5
call :tooltest tstr-2.ddl --enable-error-stack tstr2.h5
rem test for file created by Lib SAF team
call :tooltest tsaf.ddl --enable-error-stack tsaf.h5
rem test for file with variable length data
call :tooltest tvldtypes1.ddl --enable-error-stack tvldtypes1.h5
call :tooltest tvldtypes2.ddl --enable-error-stack tvldtypes2.h5
call :tooltest tvldtypes3.ddl --enable-error-stack tvldtypes3.h5
call :tooltest tvldtypes4.ddl --enable-error-stack tvldtypes4.h5
call :tooltest tvldtypes5.ddl --enable-error-stack tvldtypes5.h5
rem test for file with variable length string data
call :tooltest tvlstr.ddl --enable-error-stack tvlstr.h5
rem test for files with array data
call :tooltest tarray1.ddl --enable-error-stack tarray1.h5
rem call :tooltest4 tarray1_big.ddl --enable-error-stack -R tarray1_big.h5
call :tooltest tarray2.ddl --enable-error-stack tarray2.h5
call :tooltest tarray3.ddl --enable-error-stack tarray3.h5
call :tooltest tarray4.ddl --enable-error-stack tarray4.h5
call :tooltest tarray5.ddl --enable-error-stack tarray5.h5
call :tooltest tarray6.ddl --enable-error-stack tarray6.h5
call :tooltest tarray7.ddl --enable-error-stack tarray7.h5
call :tooltest tarray8.ddl --enable-error-stack tarray8.h5
rem test for wildcards in filename (does not work with cmake)
rem call :tooltest4 tstarfile.ddl --enable-error-stack -H -d Dataset1 tarr*.h5
rem call :tooltest4 tqmarkfile.ddl --enable-error-stack -H -d Dataset1 tarray?.h5
call :tooltest tmultifile.ddl --enable-error-stack -H -d Dataset1 tarray2.h5 tarray3.h5 tarray4.h5 tarray5.h5 tarray6.h5 tarray7.h5
rem test for files with empty data
call :tooltest tempty.ddl --enable-error-stack tempty.h5
rem test for files with groups that have comments
call :tooltest tgrp_comments.ddl --enable-error-stack tgrp_comments.h5
rem test the --filedriver flag
call :tooltest tsplit_file.ddl --enable-error-stack --filedriver=split tsplit_file
rem On Windows, we pass "PERCENT", and let other calls replace it with
rem the "%". We cannot pass "%" directly because Windows interprets it as
rem the name of the script. --SJW 8/24/07
call :tooltest tfamily.ddl --enable-error-stack --filedriver=family tfamilyPERCENT05d.h5
call :tooltest tmulti.ddl --enable-error-stack --filedriver=multi tmulti
rem test for files with group names which reach > 1024 bytes in size
call :tooltest tlarge_objname.ddl --enable-error-stack -w157 tlarge_objname.h5
rem test '-A' to suppress data but print attr's
rem call :tooltest4 tall-2A.ddl --enable-error-stack -A tall.h5
rem test '-r' to print attributes in ASCII instead of decimal
rem call :tooltest4 tall-2B.ddl --enable-error-stack -A -r tall.h5
rem test Subsetting
call :tooltest tall-4s.ddl --enable-error-stack --dataset=/g1/g1.1/dset1.1.1 --start=1,1 --stride=2,3 --count=3,2 --block=1,1 tall.h5
call :tooltest tall-5s.ddl --enable-error-stack -d "/g1/g1.1/dset1.1.2[0;2;10;]" tall.h5
call :tooltest tdset-3s.ddl --enable-error-stack -d "/dset1[1,1;;;]" tdset.h5
call :tooltest tno-subset.ddl --enable-error-stack --no-compact-subset -d "AHFINDERDIRECT::ah_centroid_t[0] it=0 tl=0" tno-subset.h5
rem test printing characters in ASCII instead of decimal
call :tooltest tchar1.ddl --enable-error-stack -r tchar.h5
rem rev. 2004
rem tests for super block
call :tooltest tboot1.ddl --enable-error-stack -H -B -d dset tfcontents1.h5
call :tooltest tboot2.ddl --enable-error-stack -B tfcontents2.h5
rem test -p with a non existing dataset
call :tooltest4 tperror.ddl --enable-error-stack -p -d bogus tfcontents1.h5
rem test for file contents
call :tooltest tcontents.ddl --enable-error-stack -n tfcontents1.h5
rem tests for storage layout
rem compact
call :tooltest tcompact.ddl --enable-error-stack -H -p -d compact tfilters.h5
rem contiguous
call :tooltest tcontiguos.ddl --enable-error-stack -H -p -d contiguous tfilters.h5
rem chunked
call :tooltest tchunked.ddl --enable-error-stack -H -p -d chunked tfilters.h5
rem external
call :tooltest texternal.ddl --enable-error-stack -H -p -d external tfilters.h5
rem fill values
call :tooltest tfill.ddl --enable-error-stack -p tfvalues.h5
rem several datatype, with references , print path
call :tooltest treference.ddl --enable-error-stack tattr2.h5
rem escape/not escape non printable characters
call :tooltest tstringe.ddl --enable-error-stack -e tstr3.h5
call :tooltest tstring.ddl --enable-error-stack tstr3.h5
rem char data as ASCII with non escape
call :tooltest tstring2.ddl --enable-error-stack -r -d str4 tstr3.h5
rem array indices print/not print
call :tooltest tindicesyes.ddl --enable-error-stack taindices.h5
call :tooltest tindicesno.ddl --enable-error-stack -y taindices.h5
rem ######### array indices with subsetting
rem 1D case
call :tooltest tindicessub1.ddl --enable-error-stack -d 1d -s 1 -S 10 -c 2 -k 3 taindices.h5
rem 2D case
call :tooltest tindicessub2.ddl --enable-error-stack -d 2d -s 1,2 -S 3,3 -c 3,2 -k 2,2 taindices.h5
rem 3D case
call :tooltest tindicessub3.ddl --enable-error-stack -d 3d -s 0,1,2 -S 1,3,3 -c 2,2,2 -k 1,2,2 taindices.h5
rem 4D case
call :tooltest tindicessub4.ddl --enable-error-stack -d 4d -s 0,0,1,2 -c 2,2,3,2 -S 1,1,3,3 -k 1,1,2,2 taindices.h5
rem Exceed the dimensions for subsetting
call :tooltest texceedsubstart.ddl --enable-error-stack -d 1d -s 1,3 taindices.h5
call :tooltest texceedsubcount.ddl --enable-error-stack -d 1d -c 1,3 taindices.h5
call :tooltest texceedsubstride.ddl --enable-error-stack -d 1d -S 1,3 taindices.h5
call :tooltest texceedsubblock.ddl --enable-error-stack -d 1d -k 1,3 taindices.h5
rem tests for filters
rem SZIP
set option=--enable-error-stack -H -p -d szip tfilters.h5
if not "%use_filter_szip%"=="yes" (
call :skip %option%
) else (
call :tooltest tszip.ddl %option%
)
rem deflate
set option=--enable-error-stack -H -p -d deflate tfilters.h5
if not "%use_filter_deflate%"=="yes" (
call :skip %option%
) else (
call :tooltest tdeflate.ddl %option%
)
rem shuffle
set option=--enable-error-stack -H -p -d shuffle tfilters.h5
if not "%use_filter_shuffle%"=="yes" (
call :skip %option%
) else (
call :tooltest tshuffle.ddl %option%
)
rem fletcher32
set option=--enable-error-stack -H -p -d fletcher32 tfilters.h5
if not "%use_filter_fletcher32%"=="yes" (
call :skip %option%
) else (
call :tooltest tfletcher32.ddl %option%
)
rem nbit
set option=--enable-error-stack -H -p -d nbit tfilters.h5
if not "%use_filter_nbit%"=="yes" (
call :skip %option%
) else (
call :tooltest tnbit.ddl %option%
)
rem scaleoffset
set option=--enable-error-stack -H -p -d scaleoffset tfilters.h5
if not "%use_filter_scaleoffset%"=="yes" (
call :skip %option%
) else (
call :tooltest tscaleoffset.ddl %option%
)
rem all
set option=--enable-error-stack -H -p -d all tfilters.h5
rem Windows doesn't have "or" for compound conditional, so we must check
rem each one individually. --SJW 8/24/07
if not "%use_filter_fletcher32%"=="yes" (
call :skip %option%
) else if not "%use_filter_szip%"=="yes" (
call :skip %option%
) else if not "%use_filter_deflate%"=="yes" (
call :skip %option%
) else if not "%use_filter_shuffle%"=="yes" (
call :skip %option%
) else if not "%use_filter_nbit%"=="yes" (
call :skip %option%
) else if not "%use_filter_scaleoffset%"=="yes" (
call :skip %option%
) else (
call :tooltest tallfilters.ddl %option%
)
rem user defined
call :tooltest tuserfilter.ddl --enable-error-stack -H -p -d myfilter tfilters.h5
rem test for displaying objects with very long names
call :tooltest tlonglinks.ddl --enable-error-stack tlonglinks.h5
rem dimensions over 4GB, print boundary
call :tooltest tbigdims.ddl --enable-error-stack -d dset4gb -s 4294967284 -c 22 tbigdims.h5
rem hyperslab read
call :tooltest thyperslab.ddl --enable-error-stack thyperslab.h5
rem
rem test for displaying dataset and attribute of null space
call :tooltest tnullspace.ddl --enable-error-stack tnullspace.h5
rem test for long double (some systems do not have long double)
rem call :tooltest tldouble.ddl --enable-error-stack tldouble.h5
rem test for vms
call :tooltest tvms.ddl --enable-error-stack tvms.h5
rem test for binary output
rem Don't use %testdir% here, because we are already in the correct
rem directory, and using it only gets in the way of the output formatting.
rem --SJW 8/24/07
call :tooltest1 tbin1.ddl --enable-error-stack -d integer -o out1.bin -b LE tbinary.h5
rem NATIVE default. the NATIVE test can be validated with h5import/h5diff
call :tooltest1 tbin1.ddl --enable-error-stack -d integer -o out1.bin -b tbinary.h5
call :importtest out1.bin -c out3.h5import -o out1.h5
call :difftest tbinary.h5 out1.h5 /integer /integer
call :tooltest1 tbin2.ddl --enable-error-stack -b BE -d float -o out2.bin tbinary.h5
rem the NATIVE test can be validated with h5import/h5diff
call :tooltest1 tbin3.ddl --enable-error-stack -d integer -o out3.bin -b NATIVE tbinary.h5
call :importtest out3.bin -c out3.h5import -o out3.h5
call :difftest tbinary.h5 out3.h5 /integer /integer
call :tooltest1 tbin4.ddl --enable-error-stack -d double -o out4.bin -b FILE tbinary.h5
rem Clean up binary output files
if not defined hdf5_nocleanup (
for /l %%a in (1,1,4) do del /f %testdir%\out%%a.bin
del /f %testdir%\out3.h5
)
rem test for dataset region references
call :tooltest tdatareg.ddl --enable-error-stack tdatareg.h5
call :tooltest4 tdataregR.ddl --enable-error-stack -R tdatareg.h5
call :tooltest tattrreg.ddl --enable-error-stack tattrreg.h5
call :tooltest4 tattrregR.ddl --enable-error-stack -R tattrreg.h5
rem tests for group creation order
rem "1" tracked, "2" name, root tracked
call :tooltest tordergr1.ddl --enable-error-stack --group=1 --sort_by=creation_order --sort_order=ascending tordergr.h5
call :tooltest tordergr2.ddl --enable-error-stack --group=1 --sort_by=creation_order --sort_order=descending tordergr.h5
call :tooltest tordergr3.ddl --enable-error-stack -g 2 -q name -z ascending tordergr.h5
call :tooltest tordergr4.ddl --enable-error-stack -g 2 -q name -z descending tordergr.h5
call :tooltest tordergr5.ddl --enable-error-stack -q creation_order tordergr.h5
rem tests for attribute order
call :tooltest torderattr1.ddl --enable-error-stack -H --sort_by=name --sort_order=ascending torderattr.h5
call :tooltest torderattr2.ddl --enable-error-stack -H --sort_by=name --sort_order=descending torderattr.h5
call :tooltest torderattr3.ddl --enable-error-stack -H --sort_by=creation_order --sort_order=ascending torderattr.h5
call :tooltest torderattr4.ddl --enable-error-stack -H --sort_by=creation_order --sort_order=descending torderattr.h5
rem tests for floating point user defined printf format
rem Note: Make sure to use PERCENT rather than "%", because Windows needs
rem to handle it specially. --SJW 5/12/08
call :tooltest tfpformat.ddl --enable-error-stack -m PERCENT.7f tfpformat.h5
rem tests for traversal of external links
call :tooltest textlinksrc.ddl textlinksrc.h5
call :tooltest textlinkfar.ddl textlinkfar.h5
rem test for dangling external links
rem test output filter issues call :tooltest4 textlink.ddl --enable-error-stack textlink.h5
rem test for error stack display (BZ2048)
rem test output filter issues call :tooltest4 filter_fail.ddl --enable-error-stack filter_fail.h5
rem test for -o -y for dataset with attributes
call :tooltest tall-6.ddl --enable-error-stack -y -o data -d /g1/g1.1/dset1.1.1 tall.h5
rem test for dataset packed bits
rem Set up xCMD to test or skip.
rem Limits:
rem Maximum number of packed bits is 8 (for now).
rem Maximum integer size is 64 (for now).
rem Maximun Offset is 63 (Maximum size - 1).
rem Maximum Offset+Length is 64 (Maximum size).
rem Tests:
rem Normal operation on both signed and unsigned int datasets.
rem Sanity check
rem Their rawdata output should be the same.
call :tooltest tpbitsSignedWhole.ddl --enable-error-stack -d /DS08BITS -M 0,8 packedbits.h5
call :tooltest tpbitsUnsignedWhole.ddl --enable-error-stack -d /DU08BITS -M 0,8 packedbits.h5
call :tooltest tpbitsSignedIntWhole.ddl --enable-error-stack -d /DS16BITS -M 0,16 packedbits.h5
call :tooltest tpbitsUnsignedIntWhole.ddl --enable-error-stack -d /DU16BITS -M 0,16 packedbits.h5
call :tooltest tpbitsSignedLongWhole.ddl --enable-error-stack -d /DS32BITS -M 0,32 packedbits.h5
call :tooltest tpbitsUnsignedLongWhole.ddl --enable-error-stack -d /DU32BITS -M 0,32 packedbits.h5
call :tooltest tpbitsSignedLongLongWhole.ddl --enable-error-stack -d /DS64BITS -M 0,64 packedbits.h5
call :tooltest tpbitsUnsignedLongLongWhole.ddl --enable-error-stack -d /DU64BITS -M 0,64 packedbits.h5
call :tooltest tpbitsSignedLongLongWhole63.ddl --enable-error-stack -d /DS64BITS -M 0,63 packedbits.h5
call :tooltest tpbitsUnsignedLongLongWhole63.ddl --enable-error-stack -d /DU64BITS -M 0,63 packedbits.h5
call :tooltest tpbitsSignedLongLongWhole1.ddl --enable-error-stack -d /DS64BITS -M 1,63 packedbits.h5
call :tooltest tpbitsUnsignedLongLongWhole1.ddl --enable-error-stack -d /DU64BITS -M 1,63 packedbits.h5
rem Half sections
call :tooltest tpbitsSigned4.ddl --enable-error-stack -d /DS08BITS -M 0,4,4,4 packedbits.h5
call :tooltest tpbitsUnsigned4.ddl --enable-error-stack -d /DU08BITS -M 0,4,4,4 packedbits.h5
call :tooltest tpbitsSignedInt8.ddl --enable-error-stack -d /DS16BITS -M 0,8,8,8 packedbits.h5
call :tooltest tpbitsUnsignedInt8.ddl --enable-error-stack -d /DU16BITS -M 0,8,8,8 packedbits.h5
call :tooltest tpbitsSignedLong16.ddl --enable-error-stack -d /DS32BITS -M 0,16,16,16 packedbits.h5
call :tooltest tpbitsUnsignedLong16.ddl --enable-error-stack -d /DU32BITS -M 0,16,16,16 packedbits.h5
call :tooltest tpbitsSignedLongLong32.ddl --enable-error-stack -d /DS64BITS -M 0,32,32,32 packedbits.h5
call :tooltest tpbitsUnsignedLongLong32.ddl --enable-error-stack -d /DU64BITS -M 0,32,32,32 packedbits.h5
rem Quarter sections
call :tooltest tpbitsSigned2.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,2,4,2,6,2 packedbits.h5
call :tooltest tpbitsUnsigned2.ddl --enable-error-stack -d /DU08BITS -M 0,2,2,2,4,2,6,2 packedbits.h5
call :tooltest tpbitsSignedInt4.ddl --enable-error-stack -d /DS16BITS -M 0,4,4,4,8,4,12,4 packedbits.h5
call :tooltest tpbitsUnsignedInt4.ddl --enable-error-stack -d /DU16BITS -M 0,4,4,4,8,4,12,4 packedbits.h5
call :tooltest tpbitsSignedLong8.ddl --enable-error-stack -d /DS32BITS -M 0,8,8,8,16,8,24,8 packedbits.h5
call :tooltest tpbitsUnsignedLong8.ddl --enable-error-stack -d /DU32BITS -M 0,8,8,8,16,8,24,8 packedbits.h5
call :tooltest tpbitsSignedLongLong16.ddl --enable-error-stack -d /DS64BITS -M 0,16,16,16,32,16,48,16 packedbits.h5
call :tooltest tpbitsUnsignedLongLong16.ddl --enable-error-stack -d /DU64BITS -M 0,16,16,16,32,16,48,16 packedbits.h5
rem Begin and End
call :tooltest tpbitsSigned.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,6 packedbits.h5
call :tooltest tpbitsUnsigned.ddl --enable-error-stack -d /DU08BITS -M 0,2,2,6 packedbits.h5
call :tooltest tpbitsSignedInt.ddl --enable-error-stack -d /DS16BITS -M 0,2,10,6 packedbits.h5
call :tooltest tpbitsUnsignedInt.ddl --enable-error-stack -d /DU16BITS -M 0,2,10,6 packedbits.h5
call :tooltest tpbitsSignedLong.ddl --enable-error-stack -d /DS32BITS -M 0,2,26,6 packedbits.h5
call :tooltest tpbitsUnsignedLong.ddl --enable-error-stack -d /DU32BITS -M 0,2,26,6 packedbits.h5
call :tooltest tpbitsSignedLongLong.ddl --enable-error-stack -d /DS64BITS -M 0,2,58,6 packedbits.h5
call :tooltest tpbitsUnsignedLongLong.ddl --enable-error-stack -d /DU64BITS -M 0,2,58,6 packedbits.h5
rem Overlapped packed bits.
call :tooltest tpbitsOverlapped.ddl --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,0,3 packedbits.h5
rem Maximum number of packed bits.
call :tooltest tpbitsMax.ddl --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1 packedbits.h5
rem Compound type.
call :tooltest tpbitsCompound.ddl --enable-error-stack -d /dset1 -M 0,1,1,1 tcompound.h5
rem Array type.
call :tooltest tpbitsArray.ddl --enable-error-stack -d /Dataset1 -M 0,1,1,1 tarray1.h5
rem Test Error handling.
rem Too many packed bits requested. Max is 8 for now.
call :tooltest tpbitsMaxExceeded.ddl --enable-error-stack -d /DS08BITS -M 0,1,0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1 packedbits.h5
rem Offset too large. Max is 7 (8-1) for now.
call :tooltest tpbitsOffsetExceeded.ddl --enable-error-stack -d /DS08BITS -M 64,1 packedbits.h5
call :tooltest tpbitsCharOffsetExceeded.ddl --enable-error-stack -d /DS08BITS -M 8,1 packedbits.h5
call :tooltest tpbitsIntOffsetExceeded.ddl --enable-error-stack -d /DS16BITS -M 16,1 packedbits.h5
call :tooltest tpbitsLongOffsetExceeded.ddl --enable-error-stack -d /DS32BITS -M 32,1 packedbits.h5
rem Bad offset, must not be negative.
call :tooltest tpbitsOffsetNegative.ddl --enable-error-stack -d /DS08BITS -M -1,1 packedbits.h5
rem Bad length, must not be positive.
call :tooltest tpbitsLengthPositive.ddl --enable-error-stack -d /DS08BITS -M 4,0 packedbits.h5
rem Offset+Length is too large. Max is 8 for now.
call :tooltest tpbitsLengthExceeded.ddl --enable-error-stack -d /DS08BITS -M 37,28 packedbits.h5
call :tooltest tpbitsCharLengthExceeded.ddl --enable-error-stack -d /DS08BITS -M 2,7 packedbits.h5
call :tooltest tpbitsIntLengthExceeded.ddl --enable-error-stack -d /DS16BITS -M 10,7 packedbits.h5
call :tooltest tpbitsLongLengthExceeded.ddl --enable-error-stack -d /DS32BITS -M 26,7 packedbits.h5
rem Incomplete pair of packed bits request.
call :tooltest tpbitsIncomplete.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,1,0,2,2, packedbits.h5
if %nerrors% equ 0 (
echo.All %dumper% tests passed.
)
popd
endlocal & exit /b %nerrors%