Disable running tests on ilproj non test projects (dotnet/corefx#38680)
authorViktor Hofer <viktor.hofer@microsoft.com>
Wed, 19 Jun 2019 17:40:49 +0000 (19:40 +0200)
committerSantiago Fernandez Madero <safern@microsoft.com>
Wed, 19 Jun 2019 17:40:48 +0000 (10:40 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/376408d6d3768660b7f9bc184c4d3b695221c37b

src/libraries/tests.proj

index f3d79f5..fd32c37 100644 (file)
   </PropertyGroup>
 
   <ItemGroup Condition="'$(BuildAllConfigurations)' != 'true'">
+    <!-- We currently only test with C# projects. -->
     <Project Include="$(SourceDir)*\tests\**\*.Tests.csproj" />
-
-    <!-- Harcoded list of non-csproj test projects to reduce time spent on file globbing. -->
-    <Project Include="$(SourceDir)System.Runtime\tests\TestStructs\System.TestStructs.ilproj" />
-    <Project Include="$(SourceDir)System.Runtime\tests\TestModule\System.Reflection.TestModule.ilproj" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(BuildAllConfigurations)' == 'true'">