Files
assimp/test/RunSingleUnitTestSuite.bat
aramis_acg b51f7fff62 Added batch scripts to run the unittests automatically.
Added a directory to store detailled unittest results.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@271 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-01-07 15:16:26 +00:00

24 lines
426 B
Batchfile

rem Alexander Gessler, 12:30:08
if exist %BINDIR%\%1\UnitTest.exe goto test1
echo NOT AVAILABLE. Please rebuild this configuration
echo Unable to find %BINDIR%\%1\UnitTest.exe > %OUTDIR%%2
SET FIRSTUTNA=%2
goto end:
:test1
%BINDIR%\%1\UnitTest.exe > %OUTDIR%%2
if errorlevel == 0 goto succ
echo FAILURE, check output file: %2
SET FIRSTUTFAILURE=%2
goto end
:succ
echo SUCCESS
:end
echo.
echo.