From 9be30688db5c58ee45665008b7089ccc7736355b Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Thu, 19 Oct 2023 18:06:18 -0400 Subject: [PATCH] [wasm] Disable Interop/PInvoke/Vector2_3_4/* 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)}... ");