forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert ilasm unit tests to use one "merged" runner (dotnet#107167)
- Loading branch information
1 parent
800ba81
commit 252f413
Showing
7 changed files
with
112 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/tests/ilasm/System/Runtime/CompilerServices/MethodImplOptionsTests.csproj
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<HasMergedInTests>true</HasMergedInTests> | ||
<!-- These tests rely on being able to call out to the ilasm and ildasm executables, which we can't do on mobile. --> | ||
<DisableProjectBuild Condition="'$(TargetsMobile)' == 'true'">true</DisableProjectBuild> | ||
<!-- Mono doesn't provide ilasm or ildasm in their Core_Root layout. --> | ||
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono'">true</DisableProjectBuild> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="PortablePdb\IlasmPortablePdbTester.cs" /> | ||
<Compile Include="PortablePdb\IlasmPortablePdbTesterCommon.cs" /> | ||
<Compile Include="PortablePdb\IlasmPortablePdbTesterTypes.cs" /> | ||
<Compile Include="MethodImplOptions\MethodImplOptionsTests.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Remove="PortablePdb\Resources\**" /> | ||
<EmbeddedResource Remove="PortablePdb\Resources\**" /> | ||
<None Remove="PortablePdb\Resources\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="PortablePdb\TestFiles\TestDocuments1_unix.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestDocuments1_win.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestLocalScopes1.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestLocalScopes2.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestLocalScopes3.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestLocalScopes4.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestMethodDebugInformation.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestMethodDebugInformation_unix.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestMethodDebugInformation_win.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestPdbDebugDirectory1.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="PortablePdb\TestFiles\TestPdbDebugDirectory2.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>TestFiles\%(FileName)%(Extension)</Link> | ||
</None> | ||
<None Include="MethodImplOptions/MiAggressiveOptimization.il"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<Link>MiAggressiveOptimization.il</Link> | ||
</None> | ||
</ItemGroup> | ||
<Import Project="$(TestSourceDir)MergedTestRunner.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters