From 1a93b4f7f91c4c93ae22f06a68053c5f840fea89 Mon Sep 17 00:00:00 2001 From: Miha Zupan Date: Tue, 22 Aug 2023 23:10:09 +0200 Subject: [PATCH] Disable RemoteExecutor SearchValues tests on LinuxBionic --- src/libraries/System.Memory/tests/Span/StringSearchValues.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libraries/System.Memory/tests/Span/StringSearchValues.cs b/src/libraries/System.Memory/tests/Span/StringSearchValues.cs index 57c53d1e55730..faab1448b6122 100644 --- a/src/libraries/System.Memory/tests/Span/StringSearchValues.cs +++ b/src/libraries/System.Memory/tests/Span/StringSearchValues.cs @@ -197,6 +197,7 @@ public static void IndexOfAny_InvalidUtf16() } [Fact] + [SkipOnPlatform(TestPlatforms.LinuxBionic, "Remote executor has problems with exit codes")] public static void IndexOfAny_CanProduceDifferentResultsUnderNls() { if (CanTestInvariantCulture) @@ -253,6 +254,7 @@ public static void TestIndexOfAny_RandomInputs() } [ConditionalFact(nameof(CanTestInvariantCulture))] + [SkipOnPlatform(TestPlatforms.LinuxBionic, "Remote executor has problems with exit codes")] public static void TestIndexOfAny_RandomInputs_InvariantCulture() { RunUsingInvariantCulture(static () => @@ -275,6 +277,7 @@ public static void TestIndexOfAny_RandomInputs_Nls() } [Fact] + [SkipOnPlatform(TestPlatforms.LinuxBionic, "Remote executor has problems with exit codes")] [ActiveIssue("Manual execution only. Worth running any time SearchValues logic is modified.")] public static void TestIndexOfAny_RandomInputs_Stress() {