forked from chucknorris/roundhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.bat
39 lines (28 loc) · 1.04 KB
/
test.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
::Project UppercuT - http://uppercut.googlecode.com
::No edits to this file are required - http://uppercut.pbwiki.com
if '%2' NEQ '' goto usage
if '%3' NEQ '' goto usage
if '%1' == '/?' goto usage
if '%1' == '-?' goto usage
if '%1' == '?' goto usage
if '%1' == '/help' goto usage
SET DIR=%cd%
SET BUILD_DIR=%~d0%~p0%
SET NANT="%BUILD_DIR%lib\Nant\nant.exe"
SET build.config.settings="%DIR%\settings\UppercuT.config"
%NANT% /f:"%BUILD_DIR%build\compile.step" -D:build.config.settings=%build.config.settings%
if %ERRORLEVEL% NEQ 0 goto errors
%NANT% -logger:NAnt.Core.DefaultLogger -quiet /f:"%BUILD_DIR%build\analyzers\test.step" %1 -D:build.config.settings=%build.config.settings%
%NANT% -logger:NAnt.Core.DefaultLogger -quiet /f:"%BUILD_DIR%build\analyzers\test.step" open_results -D:build.config.settings=%build.config.settings%
if %ERRORLEVEL% NEQ 0 goto errors
goto finish
:usage
echo.
echo Usage: test.bat
echo Usage: test.bat all - to run all tests
echo.
goto finish
:errors
EXIT /B %ERRORLEVEL%
:finish