Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public static void TestConvertToInt64NativeDouble(double value)

[Theory]
[InlineData(float.MaxValue)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void TestConvertToInt64NativeSingle(float value)
{
Func<float, long> func = float.ConvertToIntegerNative<long>;
Expand All @@ -44,6 +45,7 @@ public static void TestConvertToInt64NativeSingle(float value)

[Theory]
[InlineData(double.MaxValue)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void TestConvertToUInt32NativeDouble(double value)
{
Func<double, uint> func = double.ConvertToIntegerNative<uint>;
Expand All @@ -53,6 +55,7 @@ public static void TestConvertToUInt32NativeDouble(double value)

[Theory]
[InlineData(float.MaxValue)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void TestConvertToUInt32NativeSingle(float value)
{
Func<float, uint> func = float.ConvertToIntegerNative<uint>;
Expand All @@ -62,6 +65,7 @@ public static void TestConvertToUInt32NativeSingle(float value)

[Theory]
[InlineData(double.MaxValue)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void TestConvertToUInt64NativeDouble(double value)
{
Func<double, ulong> func = double.ConvertToIntegerNative<ulong>;
Expand All @@ -71,6 +75,7 @@ public static void TestConvertToUInt64NativeDouble(double value)

[Theory]
[InlineData(float.MaxValue)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void TestConvertToUInt64NativeSingle(float value)
{
Func<float, ulong> func = float.ConvertToIntegerNative<ulong>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Tracking issue: https://github.com/dotnet/runtime/issues/119948 -->
<MonoAotIncompatible>true</MonoAotIncompatible>
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono'">true</DisableProjectBuild>
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono' and '$(RuntimeVariant)' == 'minifullaot'">true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="ExtendedLayout.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Library</OutputType>
<!-- Tracking issue: https://github.com/dotnet/runtime/issues/119948 -->
<MonoAotIncompatible>true</MonoAotIncompatible>
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono' and '$(RuntimeVariant)' == 'minifullaot'">true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="ExtendedLayoutTypes.il" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public ref struct Explicit5b_Invalid64
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/112557")]
public static void Validate_Explicit5_Invalid()
{
if (Environment.Is64BitProcess)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<!-- This test removes one of its dependencies at runtime, so it is not compatible with AOT -->
<MonoAotIncompatible>true</MonoAotIncompatible>
<NativeAotIncompatible>true</NativeAotIncompatible>
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono' and '$(RuntimeVariant)' == 'minifullaot'">true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="test76531.cs" />
Expand Down
Loading