From 1e05a8f53f64c88612b12090a4ef743ec66950e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Fi=C5=A1era?= Date: Fri, 17 Feb 2023 10:01:53 +0100 Subject: [PATCH] [wasm] Disable function pointer tests on browser. --- src/libraries/System.Reflection/tests/MethodInfoTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Reflection/tests/MethodInfoTests.cs b/src/libraries/System.Reflection/tests/MethodInfoTests.cs index 886194492c50ea..16ba988a5258be 100644 --- a/src/libraries/System.Reflection/tests/MethodInfoTests.cs +++ b/src/libraries/System.Reflection/tests/MethodInfoTests.cs @@ -896,6 +896,7 @@ private static void SecondCall(MethodInfo mi) [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/71883", typeof(PlatformDetection), nameof(PlatformDetection.IsNativeAot))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/82272", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser))] private static unsafe void TestFunctionPointers() { void* fn = FunctionPointerMethods.GetFunctionPointer();