Skip to content

Commit

Permalink
Disable tests failing at runtime and remove tests failing to compile.
Browse files Browse the repository at this point in the history
See #1036, #1037 and #1038
  • Loading branch information
mmitche committed May 21, 2015
1 parent 85eac4c commit c122ee6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2,796 deletions.
11 changes: 11 additions & 0 deletions tests/issues.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project DefaultTargets = "GetListOfTestCmds"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
<ItemGroup Condition="'$(XunitTestBinBase)' != ''">
<ExcludeList Include="$(XunitTestBinBase)\JIT\Directed\newarr\newarr.cmd" >
<Issue>1036</Issue>
</ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)\JIT\Directed\lifetime\lifetime2.cmd" >
<Issue>1037</Issue>
</ExcludeList>
</ItemGroup>
</Project>
5 changes: 4 additions & 1 deletion tests/runtest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ set __ProjectFilesDir=%~dp0
set __VSVersion=VS2013
set __VSProductVersion=120

:: Default __Exclude to issues.targets
set __Exclude=%~dp0\issues.targets

:Arg_Loop
if "%1" == "" goto ArgsDone
if /i "%1" == "x64" (set __BuildArch=x64&set __MSBuildBuildArch=x64&shift&goto Arg_Loop)
Expand Down Expand Up @@ -126,7 +129,7 @@ if ERRORLEVEL 1 (
)

:runtests
%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix%
%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline
exit /b %ERRORLEVEL%

:PerformXunitWrapperBuild
Expand Down
Loading

0 comments on commit c122ee6

Please sign in to comment.