forked from uucidl/uu.spdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_tests.bat
54 lines (42 loc) · 1.06 KB
/
build_tests.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
40
41
42
43
44
45
46
47
48
49
50
51
@echo off
setlocal
REM This script must be run after vcvarsall.bat has been run,
REM so that cl.exe is in your path.
where cl.exe || goto error_end_nocompiler
REM HEREPATH is <drive_letter>:<script_directory>
set HEREPATH=%~d0%~p0
set TOP=%HEREPATH%
REM Get canonical path for TOP
pushd .
cd %TOP%
set TOP=%CD%
popd
IF not defined BUILD set BUILD=%TOP%\output
REM Start with the most strict warning level
set WARNINGS=-W4 -WX
REM ignore unknown pragmas
set WARNINGS=%WARNINGS% -wd4068
set CLFLAGS=%CLFLAGS% -nologo -FC -EHsc -Z7 -Oi -GR- -Gm- -O2 -Z7 %DEFINES% %WARNINGS% -DEBUG
mkdir %BUILD%
del /Q %BUILD%
set D=%BUILD%\spdr_basic_tests.exe
cl.exe -Fe:%D% ^
%CLFLAGS% %TOP%\tests\spdr_basic_tests.c
if %errorlevel% neq 0 goto error_end_build
echo TEST %D%
%D%
if %errorlevel% neq 0 goto error_end_test
endlocal
exit /b 0
:error_end_nocompiler
echo ERROR: CL.EXE missing. Have you run vcvarsall.bat?
endlocal
exit /b 1
:error_end_build
echo ERROR: Failed to build
endlocal
exit /b %errorlevel%
:error_end_test
echo ERROR: Test %D% failed
endlocal
exit /b %errorlevel%