summaryrefslogtreecommitdiff
path: root/Chalice/tests/test-scripts/test.bat
blob: 8572dc6bf606d0ca830526a83114fbe1a8906ec2 (plain)
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
@echo off

set chalice="%~dp0\..\..\chalice.bat"
set getparams="%~dp0\getparams.bat"

if not exist "%1.chalice" goto errorNotFound

:: get parameters
set chaliceparameters=
setlocal EnableDelayedExpansion
set done=0
set key=a
FOR /F "usebackq tokens=1,2 delims==" %%i in (%1.chalice) do (
    
    if !done!==0 (
        set key=%%i
        set param=%%j
    )
    
    set done=1
)
set str=// chalice-parameter
if "!key!"=="!str!" (
    set chaliceparameters=!param!
)

set output=output.txt
echo Verification of %1.chalice using parameters="%chaliceparameters%" > %output%
echo.>> %output%
call %chalice% "%1.chalice" -smoke -time:0 %chaliceparameters% %2 %3 %4 %5 %6 %7 >> %output% 2>&1
type %output%

exit /B 0

:errorNotFound
echo ERROR: %1.chalice not found.
exit /B 1