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 @@ -181,7 +181,6 @@ static void ValidateTimestampsCleared()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_TaskCompleted()
Comment thread
kotlarmilos marked this conversation as resolved.
{
RemoteExecutor.Invoke(async () =>
Expand All @@ -201,7 +200,6 @@ public void RuntimeAsync_TaskCompleted()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_ExceptionCleanup()
{
RemoteExecutor.Invoke(async () =>
Expand All @@ -227,7 +225,6 @@ public void RuntimeAsync_ExceptionCleanup()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_DebuggerDetach()
{
RemoteExecutor.Invoke(async () =>
Expand Down Expand Up @@ -288,7 +285,6 @@ public void RuntimeAsync_DebuggerDetach()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_ValueTypeResult()
{
RemoteExecutor.Invoke(async () =>
Expand All @@ -309,7 +305,6 @@ public void RuntimeAsync_ValueTypeResult()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_HandledExceptionPartialUnwind()
{
RemoteExecutor.Invoke(async () =>
Expand All @@ -329,7 +324,6 @@ public void RuntimeAsync_HandledExceptionPartialUnwind()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_CancellationCleanup()
{
RemoteExecutor.Invoke(async () =>
Expand Down Expand Up @@ -358,7 +352,6 @@ public void RuntimeAsync_CancellationCleanup()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_TimestampsTrackedWhileInFlight()
{
RemoteExecutor.Invoke(async () =>
Expand Down Expand Up @@ -421,7 +414,6 @@ public void RuntimeAsync_TimestampsTrackedWhileInFlight()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_ContinuationTimestampObservedDuringResume()
{
RemoteExecutor.Invoke(async () =>
Expand Down Expand Up @@ -454,7 +446,6 @@ public void RuntimeAsync_ContinuationTimestampObservedDuringResume()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_InFlightInstrumentationUpgrade()
{
RemoteExecutor.Invoke(async () =>
Expand Down Expand Up @@ -504,7 +495,6 @@ public void RuntimeAsync_InFlightInstrumentationUpgrade()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_TplEvents()
{
RemoteExecutor.Invoke(() =>
Expand Down Expand Up @@ -539,7 +529,6 @@ public void RuntimeAsync_TplEvents()
}

[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124072", typeof(PlatformDetection), nameof(PlatformDetection.IsInterpreter))]
public void RuntimeAsync_NoTplEventsWithoutDebugger()
{
RemoteExecutor.Invoke(() =>
Expand Down
Loading