Disable TLogTests so they are not run nightly. They are not that robust yet.

This commit is contained in:
Dan Lambright 2024-07-08 18:36:57 -04:00
parent 462c164bbd
commit 4aebd0f226

View File

@ -335,6 +335,8 @@ ACTOR Future<Void> startTestsTLogRecoveryActors(TestTLogOptions params) {
state Reference<TLogTestContext> pTLogTestContextEpochOne =
initTLogTestContext(params, Optional<Reference<TLogTestContext>>());
FlowTransport::createInstance(false, 1, WLTOKEN_RESERVED_COUNT);
state uint16_t tLogIdx = 0;
TraceEvent("TestTLogServerEnterRecoveryTest");
@ -411,15 +413,15 @@ ACTOR Future<Void> 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();
// }