@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 hdf5 tools rem rem Created: Scott Wegner, 9/4/07 rem Modified: Scott Wegner, 9/6/07 rem setlocal enabledelayedexpansion pushd %~dp0 rem Clean any variables starting with "HDF5_TOOL_", as we use these for our rem tests. Also clear "HDF5_TOOL_TESTS", as we will be addding all of our tests rem to this variable. rem Set at least one variable in set beforehand to avoid error message. rem --SJW 9/5/07 set hdf5_tool_=foo for /f "tokens=1 delims==" %%a in ('set hdf5_tool_') do set %%a= set hdf5_tool_tests= goto main rem Function to add a test to the test suite. rem Expects the following parameters: rem %1 - Name of the tool being tested rem %2 - Relative path of script :add_test set hdf5_tool_tests=%hdf5_tool_tests% %1 set hdf5_tool_%1_test=%CD%\%2\%1 exit /b rem Run all of the tests that have been added to the suite. Print a header rem at the beginning of each one. Short-circuit if a test fails. rem Expects the following parameters: rem %1 - release or debug version rem %2 - "dll" or nothing :run_tests for %%a in (%hdf5_tool_tests%) do ( echo. echo.************************************ echo. Testing %%a ^(%1 %2^) echo.************************************ rem Only add our parameters for batch scripts. call !hdf5_tool_%%a_test:.bat= %1 %2! rem Exit early if test fails. if !errorlevel! neq 0 exit /b ) rem If we get here, that means all of our tests passed. echo.All tool tests passed. exit /b rem This is where we add tests to the suite, and run them all at the end. rem Make sure only to run dll versions of tests you build dll for. rem Also make sure to add *.bat to batch scripts, as the above functions rely rem on it for sending parameters. --SJW 9/6/07 :main rem lib tests call :add_test talign%2 talign%2\%1 rem h5dump tests rem Test commented because it produces output in the wrong directory. rem --SJW 9/5/07 rem if not "%2"=="dll" ( rem call :add_test h5dumptst .\testfiles\h5dumptst\%1 rem ) call :add_test testh5dump.bat .\h5dump call :add_test testh5dumpxml.bat .\h5dump rem h5diff tests rem Test commented because it produces output in the wrong directory. rem --SJW 9/5/07 rem if not "%2"=="dll" ( rem call :add_test h5difftst .\testfiles\h5difftst\%1 rem ) call :add_test testh5diff.bat .\h5diff rem h5ls tests call :add_test testh5ls.bat .\h5ls rem misc tests rem Test commented because we don't built it on Windows rem --SJW 9/5/07 rem call :add_test h5stat_gentest .\testfiles\h5stat_gentest%2\%1 call :add_test testh5repart.bat .\h5repart if not "%2"=="dll" ( call :add_test testh5mkgrp.bat .\h5mkgrp ) rem h5import tests rem Test commented because it produces output in the wrong directory. rem --SJW 9/5/07 rem if not "%2"=="dll" ( rem call :add_test h5importtest .\testfiles\h5importtest\%1 rem ) call :add_test h5importtestutil.bat .\h5import rem h5repack tests call :add_test h5repack.bat .\h5repack if not "%2"=="dll" ( call :add_test h5repacktst .\testfiles\h5repacktst\%1 ) rem h5jam tests if not "%2"=="dll" ( call :add_test testh5jam.bat .\h5jam ) rem h5copy tests rem Test commented because we don't built it on Windows rem --SJW 9/5/07 rem call :add_test h5stat_gentest .\testfiles\h5stat_gentest%2\%1 if not "%2"=="dll" ( call :add_test testh5copy.bat .\h5copy ) rem h5stat tests rem Test commented because it produces output in the wrong directory. rem --SJW 9/5/07 rem if not "%2"=="dll" ( rem call :add_test h5repart_gentest .\testfiles\h5repart_gentest\%1 rem ) call :add_test testh5stat.bat .\h5stat rem Run the tests, passing in which version to run call :run_tests %* popd endlocal & exit /b