v/make_tests.bat

43 lines
756 B
Batchfile
Raw Normal View History

@echo off
echo Cleanup
del v.exe
2019-08-17 12:26:26 +02:00
del v_win.c
del v2.exe
2019-08-17 15:31:44 +02:00
echo fetch v_win.c
2019-08-17 12:26:26 +02:00
curl -O https://raw.githubusercontent.com/vlang/vc/master/v_win.c
if %ERRORLEVEL% NEQ 0 goto :fail
echo build vc using gcc
2019-08-17 12:26:26 +02:00
gcc -std=gnu11 -DUNICODE -D_UNICODE -w -o vc.exe v_win.c
2019-08-17 15:31:44 +02:00
del v_win.c
if %ERRORLEVEL% NEQ 0 goto :fail
echo build v using vc
vc.exe -o v.exe compiler
if %ERRORLEVEL% NEQ 0 goto :fail
setlocal EnableDelayedExpansion
echo testing v
v test v
if %ERRORLEVEL% NEQ 0 goto :fail
echo skipping build vc.msvc using vc
REM vc.exe -os msvc -o v.msvc.exe compiler
REM if %ERRORLEVEL% NEQ 0 goto :fail
echo skipping testing v.msvc -os msvc
REM v.msvc.exe -os msvc test v
REM if %ERRORLEVEL% NEQ 0 goto :fail
goto :done
:fail
echo fail
exit /b 1
:done
echo pass