Skip to content

Commit 8b458e2

Browse files
authored
Try skipping tests with japanese chars (#47560)
* Try skipping tests with japanese chars * Add Issue
1 parent 4a47904 commit 8b458e2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/SignalR/common/SignalR.Common/test/Internal/Protocol/Utf8BufferTextWriterTests.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using System.Text;
99
using Microsoft.AspNetCore.Internal;
1010
using Microsoft.AspNetCore.SignalR.Internal;
11+
using Microsoft.AspNetCore.Testing;
1112
using Xunit;
1213

1314
namespace Microsoft.AspNetCore.SignalR.Common.Tests.Internal.Protocol
@@ -244,7 +245,8 @@ public void GetAndReturnCachedBufferTextWriter()
244245
Assert.Same(textWriter1, textWriter2);
245246
}
246247

247-
[Fact]
248+
[ConditionalFact]
249+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47566", Queues = "All.OSX")]
248250
public void WriteMultiByteCharactersToSmallBuffers()
249251
{
250252
// Test string breakdown (char => UTF-8 hex values):
@@ -306,7 +308,8 @@ public static IEnumerable<object[]> CharAndSegmentSizes
306308
}
307309
}
308310

309-
[Theory]
311+
[ConditionalTheory]
312+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47566", Queues = "All.OSX")]
310313
[MemberData(nameof(CharAndSegmentSizes))]
311314
public void WriteUnicodeStringAndCharsWithVaryingSegmentSizes(char singleChar, int segmentSize)
312315
{

0 commit comments

Comments
 (0)