Commit 4c5d51d7 authored by Nick Craver's avatar Nick Craver

Tests: move around

parent 6d2cfb1a
...@@ -11,7 +11,7 @@ public class AggresssiveTests : TestBase ...@@ -11,7 +11,7 @@ public class AggresssiveTests : TestBase
{ {
public AggresssiveTests(ITestOutputHelper output) : base(output) { } public AggresssiveTests(ITestOutputHelper output) : base(output) { }
[Fact] [FactLongRunning]
public async Task ParallelTransactionsWithConditions() public async Task ParallelTransactionsWithConditions()
{ {
const int Muxers = 4, Workers = 20, PerThread = 250; const int Muxers = 4, Workers = 20, PerThread = 250;
......
...@@ -280,7 +280,8 @@ public void GetWithExpiryWrongTypeSync() ...@@ -280,7 +280,8 @@ public void GetWithExpiryWrongTypeSync()
Assert.Equal("WRONGTYPE Operation against a key holding the wrong kind of value", ex.Message); Assert.Equal("WRONGTYPE Operation against a key holding the wrong kind of value", ex.Message);
} }
[Fact(Skip = "Unfriendly to Redis 3.x on Windows...need to investigate")] #if DEBUG
[Fact]
public async Task TestSevered() public async Task TestSevered()
{ {
SetExpectedAmbientFailureCount(2); SetExpectedAmbientFailureCount(2);
...@@ -300,6 +301,7 @@ public async Task TestSevered() ...@@ -300,6 +301,7 @@ public async Task TestSevered()
Assert.Equal(key, db.StringGet(key)); Assert.Equal(key, db.StringGet(key));
} }
} }
#endif
[Fact] [Fact]
public async Task IncrAsync() public async Task IncrAsync()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment