Merge pull request #2377 from joelmartinez/docs-multiassembly-extension-fix
[mono.git] / mcs / class / System.Data.OracleClient / run-tests.bat
1 @echo off
2 REM ********************************************************
3 REM This batch call all the test batches with default parameters
4 REM ********************************************************
5 REM ********************************************************
6 REM This batch file receives the follwing parameters:
7 REM build/rebuild (optional): should the solution file be rebuilded 
8 REM                             or just builded before test run (default is rebuild)
9 REM ********************************************************
10
11 IF "%1"=="" (
12         set BUILD_OPTION=rebuild
13 ) ELSE (
14         set BUILD_OPTION=%1
15 )
16         
17
18 call run-tests.test.bat %BUILD_OPTION%
19
20