12345678910111213141516171819202122232425262728 |
- @echo off
- rem
- rem usage: runtest [<testfile>...]
- rem without args, runs all *.test files in the current directory
- rem
- set TESTFILES=%*
- if "x%TESTFILES%" == "x" set TESTFILES=*.test
- mkdir work 2>nul
- xcopy /i /y lib work\lib
- : del work\work.exe 2>nul
- call opp_test gen -v %TESTFILES% || goto end
- echo.
- cd work || goto end
- call opp_nmakemake -f --deep -linet -L../../../src -P . --no-deep-includes -I../../../src
- nmake -f makefile.vc || cd .. && goto end
- cd .. || goto end
- echo.
- path %~dp0\..\..\src;%PATH%
- call opp_test run %OPT% -v %TESTFILES% || goto end
- echo.
- echo Results can be found in work/
- :end
|