Skip to content
Snippets Groups Projects
Commit 2fdce764 authored by Georgios Bitzes's avatar Georgios Bitzes
Browse files

Increase FollowerLaggingBy1m test timeout to 20min for TSAN build

parent 90ef8201
Branches
Tags
No related merge requests found
Pipeline #1490783 failed
......@@ -402,7 +402,7 @@ TEST_F(Replication, FollowerLaggingBy1m) {
RETRY_ASSERT_TRUE(checkStateConsensus(0, 1, 2));
// bringing the lagging follower up-to-date could take a while
RETRY_ASSERT_TRUE_10MIN(checkFullConsensus(0, 1, 2));
RETRY_ASSERT_TRUE_20MIN(checkFullConsensus(0, 1, 2));
ASSERT_TRUE(crossCheckJournals(0, 1, 2));
}
......
......@@ -107,7 +107,7 @@ class Publisher;
#define RETRY_ASSERT_EQ(cond1, cond2) RETRY_ASSERT_EQ_3(cond1, cond2, NUMBER_OF_RETRIES, 10)
#define RETRY_ASSERT_NE(cond1, cond2) RETRY_ASSERT_NE_3(cond1, cond2, NUMBER_OF_RETRIES, 10)
#define RETRY_ASSERT_TRUE_10MIN(cond) RETRY_ASSERT_TRUE_3(cond, 100*60*10, 10)
#define RETRY_ASSERT_TRUE_20MIN(cond) RETRY_ASSERT_TRUE_3(cond, 100*60*20, 10)
extern std::vector<RedisRequest> testreqs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment