Welcome to mirror list, hosted at ThFree Co, Russian Federation.

run-tests.bat « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb6f2b8543e6eff136a8436537d2f597d82846c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
REM ********************************************************
REM This batch call all the test batches with default parameters
REM ********************************************************
REM ********************************************************
REM This batch file receives the follwing parameters:
REM build/rebuild (optional): should the solution file be rebuilded 
REM                             or just builded before test run (default is rebuild)
REM ********************************************************

IF "%1"=="" (
	set BUILD_OPTION=rebuild
) ELSE (
	set BUILD_OPTION=%1
)

set OUTPUT_FILE_PREFIX=MonoTests.Corlib
set RUNNING_FIXTURE=MonoTests.System

call run-tests.test.bat %BUILD_OPTION% %SECURE_MODE% %OUTPUT_FILE_PREFIX% %RUNNING_FIXTURE%