From 4aebd0f2268696ffde09881231ee8f0beb700183 Mon Sep 17 00:00:00 2001 From: Dan Lambright Date: Mon, 8 Jul 2024 18:36:57 -0400 Subject: [PATCH] Disable TLogTests so they are not run nightly. They are not that robust yet. --- fdbserver/TestTLogServer.actor.cpp | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/fdbserver/TestTLogServer.actor.cpp b/fdbserver/TestTLogServer.actor.cpp index ffd5b418d6..eb53d7edef 100644 --- a/fdbserver/TestTLogServer.actor.cpp +++ b/fdbserver/TestTLogServer.actor.cpp @@ -335,6 +335,8 @@ ACTOR Future startTestsTLogRecoveryActors(TestTLogOptions params) { state Reference pTLogTestContextEpochOne = initTLogTestContext(params, Optional>()); + FlowTransport::createInstance(false, 1, WLTOKEN_RESERVED_COUNT); + state uint16_t tLogIdx = 0; TraceEvent("TestTLogServerEnterRecoveryTest"); @@ -411,15 +413,15 @@ ACTOR Future startTestsTLogRecoveryActors(TestTLogOptions params) { return Void(); } -TEST_CASE("/fdbserver/test/TestTLogCommits") { - TestTLogOptions testTLogOptions(params); - testTLogOptions.recover = 0; - wait(startTestsTLogRecoveryActors(testTLogOptions)); - return Void(); -} +// TEST_CASE("/fdbserver/test/TestTLogCommits") { +// TestTLogOptions testTLogOptions(params); +// testTLogOptions.recover = 0; +// wait(startTestsTLogRecoveryActors(testTLogOptions)); +// return Void(); +// } -TEST_CASE("/fdbserver/test/TestTLogRecovery") { - TestTLogOptions testTLogOptions(params); - wait(startTestsTLogRecoveryActors(testTLogOptions)); - return Void(); -} +// TEST_CASE("/fdbserver/test/TestTLogRecovery") { +// TestTLogOptions testTLogOptions(params); +// wait(startTestsTLogRecoveryActors(testTLogOptions)); +// return Void(); +// }