Skip to content

Commit

Permalink
[wasm] Disable failing AOT tests to get CI green again (#85111)
Browse files Browse the repository at this point in the history
* [wasm] Disable failing AOT test - System.Collections.Immutable

Issue: #85012

* [wasm] Disable failing AOT tests - System.Runtime.Serialization.Xml*

- System.Runtime.Serialization.Xml.Tests
- System.Runtime.Serialization.Xml.ReflectionOnly.Tests

Issue: #85013
  • Loading branch information
radical committed Apr 20, 2023
1 parent 3713168 commit 72fa3bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ public void BinarySearch()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/85012", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public void BinarySearchPartialSortedList()
{
ImmutableArray<int> reverseSorted = ImmutableArray.CreateRange(Enumerable.Range(1, 150).Select(n => n * 2).Reverse());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ void AssertBytesWritten(Action<XmlDictionaryWriter> action, XmlBinaryNodeType no
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/85013", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public static void XmlBaseWriter_WriteString()
{
const byte Chars8Text = 152;
Expand Down

0 comments on commit 72fa3bd

Please sign in to comment.