Skip to content

Commit 72fa3bd

Browse files
authored
[wasm] Disable failing AOT tests to get CI green again (#85111)
* [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
1 parent 3713168 commit 72fa3bd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/libraries/System.Collections.Immutable/tests/ImmutableListTestBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ public void BinarySearch()
419419
}
420420

421421
[Fact]
422+
[ActiveIssue("https://github.com/dotnet/runtime/issues/85012", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
422423
public void BinarySearchPartialSortedList()
423424
{
424425
ImmutableArray<int> reverseSorted = ImmutableArray.CreateRange(Enumerable.Range(1, 150).Select(n => n * 2).Reverse());

src/libraries/System.Runtime.Serialization.Xml/tests/XmlDictionaryWriterTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ void AssertBytesWritten(Action<XmlDictionaryWriter> action, XmlBinaryNodeType no
495495
}
496496

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

0 commit comments

Comments
 (0)