Skip to content
Merged
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
[hot_reload] Enable some CustomAttributes tests on Mono; new issue fo…
…r async

The async test was marked with the CustomAttributes tracking issue, but it's
actually unrelated.

Fixes #52993
  • Loading branch information
lambdageek committed Nov 30, 2022
commit 33e031044fc71d63a4c391cdc41e314f0897dd7f
4 changes: 1 addition & 3 deletions src/libraries/System.Runtime.Loader/tests/ApplyUpdateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ void FirstCallAfterUpdate()
}

[ConditionalFact(typeof(ApplyUpdateUtil), nameof (ApplyUpdateUtil.IsSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/52993", TestRuntimes.Mono)]
void ClassWithCustomAttributes()
{
ApplyUpdateUtil.TestCase(static () =>
Expand Down Expand Up @@ -191,7 +190,6 @@ public void CustomAttributeUpdates()
});
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/52993", TestRuntimes.Mono)]
[ConditionalFact(typeof(ApplyUpdateUtil), nameof (ApplyUpdateUtil.IsSupported))]
public void CustomAttributeDelete()
{
Expand Down Expand Up @@ -231,7 +229,7 @@ public void CustomAttributeDelete()
});
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/52993", TestRuntimes.Mono)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/79043", TestRuntimes.Mono)]
[ConditionalFact(typeof(ApplyUpdateUtil), nameof (ApplyUpdateUtil.IsSupported))]
public void AsyncMethodChanges()
{
Expand Down