From 0621d076d8d711bf9b3a86766010a73d29de3fb9 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Fri, 20 Oct 2023 00:17:38 -0400 Subject: [PATCH] [wasm] Disable Interop/PInvoke/Vector2_3_4/* (#93712) These tests are failing as they depend on native test libraries. But wasm build for runtime tests does not support that yet. Issue: https://github.com/dotnet/runtime/issues/93669 --- src/tests/Interop/PInvoke/Vector2_3_4/Vector2_3_4.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tests/Interop/PInvoke/Vector2_3_4/Vector2_3_4.cs b/src/tests/Interop/PInvoke/Vector2_3_4/Vector2_3_4.cs index 2f79b9b20173e..c8e1dcb65fe89 100644 --- a/src/tests/Interop/PInvoke/Vector2_3_4/Vector2_3_4.cs +++ b/src/tests/Interop/PInvoke/Vector2_3_4/Vector2_3_4.cs @@ -12,6 +12,7 @@ public class Vector2_3_4Test private const int NewIntValue = 18; [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/93669", TestPlatforms.Browser)] public static void RunVector2Tests() { Console.WriteLine($"Running {nameof(RunVector2Tests)}... "); @@ -55,6 +56,7 @@ public static void RunVector2Tests() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/93669", TestPlatforms.Browser)] public static void RunVector3Tests() { Console.WriteLine($"Running {nameof(RunVector3Tests)}... "); @@ -98,6 +100,7 @@ public static void RunVector3Tests() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/93669", TestPlatforms.Browser)] public static void RunVector4Tests() { Console.WriteLine($"Running {nameof(RunVector4Tests)}... ");