Skip to content

Commit d74e166

Browse files
committed
DeadlockReprocessing: Increase timeouts
1 parent 125e42d commit d74e166

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Extensions/Xtensive.Orm.Reprocessing.Tests/Tests/DeadlockReprocessing.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
namespace Xtensive.Orm.Reprocessing.Tests
1515
{
16-
[TestFixture, Timeout(8000)]
16+
[TestFixture, Timeout(20000)]
1717
public class DeadlockReprocessing : ReprocessingBaseTest
1818
{
19-
[Test, Timeout(2000)]
19+
[Test, Timeout(5000)]
2020
public void SimpleDeadlockTest()
2121
{
2222
Console.WriteLine("Test started");
@@ -27,7 +27,7 @@ public void SimpleDeadlockTest()
2727
Assert.That(Bar2Count(), Is.EqualTo(2));
2828
}
2929

30-
[Test, Timeout(2000)]
30+
[Test, Timeout(5000)]
3131
public void NestedSerializableDeadlockTest()
3232
{
3333
Console.WriteLine("Test started");
@@ -41,7 +41,7 @@ public void NestedSerializableDeadlockTest()
4141
Assert.That(Bar2Count(), Is.EqualTo(4));
4242
}
4343

44-
[Test, Timeout(2000)]
44+
[Test, Timeout(5000)]
4545
public void NestedSnapshotDeadlockTest()
4646
{
4747
Console.WriteLine("Test started");
@@ -55,7 +55,7 @@ public void NestedSnapshotDeadlockTest()
5555
Assert.That(Bar2Count(), Is.EqualTo(4));
5656
}
5757

58-
[Test, Timeout(2000)]
58+
[Test, Timeout(5000)]
5959
public void NestedNestedSerializableSerializableTest()
6060
{
6161
Console.WriteLine("Test started");

0 commit comments

Comments
 (0)