Skip to content

Commit

Permalink
Disable MakeConst assemblies
Browse files Browse the repository at this point in the history
These unit test assemblies don't actually have any tests in them.  Running a DLL with no tests is exposing a bug in CoreFX and causing our Jenkins runs to fail.  Disabling them for now.

Issue dotnet#5918 is tracking this.
  • Loading branch information
jaredpar committed Oct 13, 2015
1 parent fe87ed4 commit 0e230f9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions BuildAndTest.proj
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,15 @@
UseHardlinksIfPossible="true" />

<ItemGroup>

<!-- MakeConst unit tests tracked by https://github.com/dotnet/roslyn/issues/5918 -->
<TestAssemblies Condition="'$(Test64)' != 'true'"
Include="$(OutputDirectory)\**\$(IncludePattern)" />
Include="$(OutputDirectory)\**\$(IncludePattern)"
Exclude="$(OutputDirectory)\**\MakeConst*" />

<TestAssemblies Condition="'$(Test64)' == 'true'"
Include="$(OutputDirectory)\**\$(IncludePattern)"
Exclude="$(OutputDirectory)\**\Roslyn.Interactive*" />
Exclude="$(OutputDirectory)\**\Roslyn.Interactive*;$(OutputDirectory)\**\MakeConst*" />
</ItemGroup>

<Exec Command="Binaries\$(Configuration)\RunTests.exe $(NuGetPackageRoot)\xunit.runner.console\$(XunitVersion)\tools $(RunTestArgs) @(TestAssemblies, ' ')" />
Expand Down

0 comments on commit 0e230f9

Please sign in to comment.