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
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,7 @@ public async Task HostShutsDownWhenTokenTriggers()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public async Task HostStopAsyncCanBeCancelledEarly()
{
Expand Down Expand Up @@ -625,6 +626,7 @@ public async Task HostStopAsyncCanBeCancelledEarly()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public async Task HostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire()
{
Expand Down Expand Up @@ -658,6 +660,7 @@ public async Task HostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public async Task WebHostStopAsyncUsesDefaultTimeoutIfNoTokenProvided()
{
Expand Down Expand Up @@ -1215,6 +1218,7 @@ public async Task Host_InvokesConfigureServicesMethodsOnlyOnce()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public void Dispose_DisposesAppConfigurationProviders()
{
Expand All @@ -1240,6 +1244,7 @@ public void Dispose_DisposesAppConfigurationProviders()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public void Dispose_DisposesHostConfigurationProviders()
{
Expand Down Expand Up @@ -1316,6 +1321,7 @@ public async Task HostCallsDisposeAsyncOnServiceProviderWhenDisposeAsyncCalled()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public async Task DisposeAsync_DisposesAppConfigurationProviders()
{
Expand All @@ -1341,6 +1347,7 @@ public async Task DisposeAsync_DisposesAppConfigurationProviders()
}

// Moq heavily utilizes RefEmit, which does not work on most aot workloads
[ActiveIssue("https://github.com/dotnet/runtime/issues/128405", TestPlatforms.iOS)]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsReflectionEmitSupported))]
public async Task DisposeAsync_DisposesHostConfigurationProviders()
{
Expand Down