Skip to content

Commit

Permalink
disable HandleVeryLargeInput according to https://github.com/aws/glid…
Browse files Browse the repository at this point in the history
  • Loading branch information
Guriy Samarin committed Mar 12, 2024
1 parent 38b15a6 commit 508e3bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions csharp/tests/Integration/GetAndSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
*/


using System.Runtime.InteropServices;

using Glide;

using static Tests.Integration.IntegrationTestBase;
Expand Down Expand Up @@ -59,6 +61,10 @@ public async Task GetReturnsEmptyString()
[Test]
public async Task HandleVeryLargeInput()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
Assert.Ignore("Flaky on MacOS");
}
using AsyncClient client = new("localhost", TestConfiguration.STANDALONE_PORTS[0], false);
string key = Guid.NewGuid().ToString();
string value = Guid.NewGuid().ToString();
Expand Down

0 comments on commit 508e3bd

Please sign in to comment.