Skip to content
Draft
Changes from all 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
10 changes: 3 additions & 7 deletions src/tests/nativeaot/SmokeTests/Exceptions/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,10 @@ public BringUpTest()

public static int Main()
{
if (!OperatingSystem.IsAndroid())
{
// Disabled on Android due to https://github.com/dotnet/runtime/issues/121353

// This test also doubles as server GC test
if (!System.Runtime.GCSettings.IsServerGC)
return 42;
}
// This test also doubles as server GC test
if (!System.Runtime.GCSettings.IsServerGC)
return 42;

if (string.Empty.Length > 0)
{
Expand Down
Loading