Skip to content

Commit

Permalink
Reenable TypeEquivalence tests (dotnet/coreclr#21309)
Browse files Browse the repository at this point in the history
Commit migrated from dotnet/coreclr@25413f4
  • Loading branch information
AaronRobinsonMSFT authored Nov 30, 2018
1 parent 427e0c7 commit 8a34559
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,20 @@
<Output TaskParameter="TargetOutputs" ItemName="ResolvedProjectReferencePaths" />
</MSBuild>

<PropertyGroup>
<EmbedProjectReferenceResponseFile>$(IntermediateOutputPath)$(MSBuildProjectName).rsp</EmbedProjectReferenceResponseFile>
</PropertyGroup>

<WriteLinesToFile
File="$(CompilerResponseFile)"
File="$(EmbedProjectReferenceResponseFile)"
Lines="@(ResolvedProjectReferencePaths -> '/link:%(fullpath)')"
Overwrite="true"
Encoding="Unicode" />

<PropertyGroup Condition="Exists('$(EmbedProjectReferenceResponseFile)')">
<CompilerResponseFile>$(EmbedProjectReferenceResponseFile);$(CompilerResponseFile)</CompilerResponseFile>
</PropertyGroup>

</Target>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
<Compile Include="**/*.cs" />
</ItemGroup>

<PropertyGroup>
<CompilerResponseFile>$(IntermediateOutputPath)TypeImpl.rsp</CompilerResponseFile>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../contracts/TypeContracts.csproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
<Compile Include="**/*.cs" />
</ItemGroup>

<PropertyGroup>
<CompilerResponseFile>$(IntermediateOutputPath)Simple.rsp</CompilerResponseFile>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../contracts/TypeContracts.csproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
Expand Down
1 change: 0 additions & 1 deletion src/coreclr/tests/src/dirs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
<DisabledProjects Include="Performance\Scenario\JitBench\unofficial_dotnet\JitBench.csproj" /> <!-- no official build support for SDK-style netcoreapp2.0 projects -->
<DisabledProjects Include="Loader\classloader\generics\regressions\DD117522\Test.csproj" />
<DisabledProjects Include="Loader\classloader\generics\GenericMethods\VSW491668.csproj" /> <!-- issue 5501 -->
<DisabledProjects Include="baseservices\typeequivalence\**\*.csproj" />
</ItemGroup>

<!-- Test build is divided in slices which can be created within Test Group
Expand Down

0 comments on commit 8a34559

Please sign in to comment.