Skip to content

Commit e7ed417

Browse files
Baseline failing Pri0 tests under interop/loader (#84614)
1 parent e02954b commit e7ed417

5 files changed

+15
-0
lines changed

src/tests/Interop/DisabledRuntimeMarshalling/DisabledRuntimeMarshalling_Disabled_NativeAssemblyDisabled.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4+
5+
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/84402 -->
6+
<NativeAotIncompatible>true</NativeAotIncompatible>
47
</PropertyGroup>
58
<ItemGroup>
69
<Compile Include="PInvokeAssemblyMarshallingDisabled/*.cs" />

src/tests/Interop/DisabledRuntimeMarshalling/DisabledRuntimeMarshalling_Disabled_NativeTypeInAssembly.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4+
5+
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/84402 -->
6+
<NativeAotIncompatible>true</NativeAotIncompatible>
47
</PropertyGroup>
58
<ItemGroup>
69
<Compile Include="PInvokeAssemblyMarshallingDisabled/*.cs" />

src/tests/Interop/DisabledRuntimeMarshalling/DisabledRuntimeMarshalling_Disabled_NativeTypeInAssembly_ro.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<!-- Run the same test suite with optimizations on to validate that inlined IL stubs with the disabled marshalling behavior work correctly. -->
55
<DebugType>None</DebugType>
66
<Optimize>true</Optimize>
7+
8+
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/84402 -->
9+
<NativeAotIncompatible>true</NativeAotIncompatible>
710
</PropertyGroup>
811
<ItemGroup>
912
<Compile Include="PInvokeAssemblyMarshallingDisabled/*.cs" />

src/tests/Interop/DisabledRuntimeMarshalling/DisabledRuntimeMarshalling_NativeAssemblyDisabled.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4+
5+
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/84402 -->
6+
<NativeAotIncompatible>true</NativeAotIncompatible>
47
</PropertyGroup>
58
<ItemGroup>
69
<Compile Include="PInvokeAssemblyMarshallingDisabled/*.cs" />

src/tests/issues.targets

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -898,6 +898,9 @@
898898

899899
<!-- NativeAOT specific -->
900900
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(TestBuildMode)' == 'nativeaot' and '$(RuntimeFlavor)' == 'coreclr'">
901+
<ExcludeList Include="$(XunitTestBinBase)/Loader/classloader/TypeInitialization/CctorsWithSideEffects/CctorForWrite/*">
902+
<Issue>https://github.com/dotnet/runtime/issues/84007</Issue>
903+
</ExcludeList>
901904
<ExcludeList Include="$(XunitTestBinBase)/Loader/classloader/StaticVirtualMethods/NegativeTestCases/**">
902905
<Issue>https://github.com/dotnet/runtimelab/issues/155: Compatible TypeLoadException for invalid inputs</Issue>
903906
</ExcludeList>

0 commit comments

Comments
 (0)