diff options
author | Koundinya Veluri <kouvel@microsoft.com> | 2015-09-30 12:20:52 -0700 |
---|---|---|
committer | Bryan P. Arant <bryanar@microsoft.com> | 2015-10-15 03:15:54 +0000 |
commit | 4cf34fe7988ad04eaa7f699a5d0faea8a8394f95 (patch) | |
tree | 29cc1fd9de029a9b8a1c0e2f7e57e5a3e568667a /tests/runtest.cmd | |
parent | 06579986abb889d2a509be7e2c6370b4fa363fd6 (diff) | |
download | coreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.tar.gz coreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.tar.bz2 coreclr-4cf34fe7988ad04eaa7f699a5d0faea8a8394f95.zip |
Changes to Test Infrastructure
The following changes are being submitted in order to prepare for a large collection of tests to be ported from the internal legacy test tree.
- Adds "build kinds" to the test tree.
- Adds some documentation for the test tree
- Adds a Test Priority feature (see documentation Documentation/project-docs/tests.md for more information.
- Dropped the cs_template.csproj types and converted to individual CSProject files.
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r-- | tests/runtest.cmd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd index f08af94110..7d9220b8a9 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -138,12 +138,12 @@ if ERRORLEVEL 1 ( exit /b 0 :runtests -%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=normal;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline +%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diagnostic;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline exit /b %ERRORLEVEL% :PerformXunitWrapperBuild -%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoRun=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=normal;LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix% +%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoRun=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diagnostic;LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix% exit /b %ERRORLEVEL% :Usage |