forked from fuse-open/fuselibs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.bat
More file actions
27 lines (22 loc) · 635 Bytes
/
test.bat
File metadata and controls
27 lines (22 loc) · 635 Bytes
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
@echo off
pushd "%~dp0"
call build.bat || goto ERROR
echo *********************************************
echo * Run UnoTest tests
echo *********************************************
Stuff\uno test Source -q || goto ERROR
echo *********************************************
echo * Test that shipped packages compile
echo *********************************************
Stuff\uno test-gen Source PackageCompilationTest || goto ERROR
Stuff\uno build --clean --target=dotnetexe --no-strip PackageCompilationTest || goto ERROR
:SUCCESS
echo.
echo SUCCESS!
exit /b 0
:ERROR
echo.
echo FATAL ERROR: Something went wrong
echo.
pause
exit /b 1