Skip to content

Commit

Permalink
Add more tests from the CoreRT repo (dotnet#103)
Browse files Browse the repository at this point in the history
Remaining tests are the multimodule ones and static/shared library support.
  • Loading branch information
MichalStrehovsky authored Sep 16, 2020
1 parent f462a66 commit bd10a96
Show file tree
Hide file tree
Showing 40 changed files with 17,737 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/coreclr/tests/src/CLRTest.NativeAot.targets
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ if defined RunNativeAot (
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
$(NativeAotProjectLines)
<ItemGroup>
<!-- Some tests consist of multiple assemblies - make sure ILC sees them -->
<IlcCompileInput Include="%24(MSBuildProjectDirectory)\*.dll" Exclude="%24(MSBuildProjectDirectory)\$(MSBuildProjectName).dll" />
Expand Down
19 changes: 19 additions & 0 deletions src/tests/nativeaot/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_NativeAotProjectLinesCommon>
<![CDATA[
<PropertyGroup>
<RootAllApplicationAssemblies>false</RootAllApplicationAssemblies>
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
</PropertyGroup>
]]>
</_NativeAotProjectLinesCommon>
<NativeAotProjectLines>
$(_NativeAotProjectLinesCommon)
$(NativeAotProjectLines)
</NativeAotProjectLines>
</PropertyGroup>

<Import Project="../Directory.Build.targets" />
</Project>
Loading

0 comments on commit bd10a96

Please sign in to comment.