summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl
diff options
context:
space:
mode:
authorCheahuychou Mao <cheahuychou.mao@mongodb.com>2020-03-24 17:39:15 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-27 22:39:04 +0000
commit2abab48428af3ba6e1dd9a911f2aa34c77ecb891 (patch)
treed3ed14843579a198c8871ce27b6f5e9637c8c271 /src/mongo/db/repl
parent86daed7acfc1a2adf97bf7d7b2ae009d7b52df24 (diff)
downloadmongo-2abab48428af3ba6e1dd9a911f2aa34c77ecb891.tar.gz
SERVER-47076 Clean up log lines in mongo/util
Diffstat (limited to 'src/mongo/db/repl')
-rw-r--r--src/mongo/db/repl/replication_recovery_test.cpp28
-rw-r--r--src/mongo/db/repl/rs_rollback_test.cpp2
2 files changed, 15 insertions, 15 deletions
diff --git a/src/mongo/db/repl/replication_recovery_test.cpp b/src/mongo/db/repl/replication_recovery_test.cpp
index a549db365af..4adeddcb79d 100644
--- a/src/mongo/db/repl/replication_recovery_test.cpp
+++ b/src/mongo/db/repl/replication_recovery_test.cpp
@@ -455,7 +455,7 @@ DEATH_TEST_F(ReplicationRecoveryTest,
recovery.recoverFromOplog(opCtx, Timestamp(1, 1));
}
-DEATH_TEST_REGEX_F(ReplicationRecoveryTest, TruncateEntireOplogFasserts, "Fatal Assertion.*40296") {
+DEATH_TEST_REGEX_F(ReplicationRecoveryTest, TruncateEntireOplogFasserts, "Fatal assertion.*40296") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -781,7 +781,7 @@ TEST_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
AppliedThroughBehindOplogFasserts,
- "Fatal Assertion.*40292") {
+ "Fatal assertion.*40292") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -793,7 +793,7 @@ DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
AppliedThroughAheadOfTopOfOplogCausesFassert,
- "Fatal Assertion.*40313") {
+ "Fatal assertion.*40313") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -805,7 +805,7 @@ DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
AppliedThroughNotInOplogCausesFassert,
- "Fatal Assertion.*40292") {
+ "Fatal assertion.*40292") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1083,7 +1083,7 @@ TEST_F(ReplicationRecoveryTest, AbortTransactionOplogEntryCorrectlyUpdatesConfig
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
RecoveryFailsWithPrepareAndEnableReadConcernMajorityFalse,
- "Fatal Assertion.*51146") {
+ "Fatal assertion.*51146") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1471,7 +1471,7 @@ TEST_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
RecoverFromOplogUpToWithoutStableCheckpoint,
- "Fatal Assertion.*31399") {
+ "Fatal assertion.*31399") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1482,7 +1482,7 @@ DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneFailsWithoutStableCheckpoint,
- "Fatal Assertion.*31229") {
+ "Fatal assertion.*31229") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1493,7 +1493,7 @@ DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneFailsWithNullStableCheckpoint,
- "Fatal Assertion.*50806") {
+ "Fatal assertion.*50806") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1505,7 +1505,7 @@ DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(ReplicationRecoveryTest,
RecoverFromOplogUpToFailsWithNullStableCheckpoint,
- "Fatal Assertion.*50806") {
+ "Fatal assertion.*50806") {
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
auto opCtx = getOperationContext();
@@ -1562,7 +1562,7 @@ TEST_F(ReplicationRecoveryTest,
DEATH_TEST_REGEX_F(
ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneWithTakeUnstableCheckpointOnShutdownFailsWithInitialSyncFlag,
- "Fatal Assertion.*31362") {
+ "Fatal assertion.*31362") {
gTakeUnstableCheckpointOnShutdown = true;
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
@@ -1577,7 +1577,7 @@ DEATH_TEST_REGEX_F(
DEATH_TEST_REGEX_F(
ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneWithTakeUnstableCheckpointOnShutdownFailsWithOplogTruncateAfterPoint,
- "Fatal Assertion.*31363") {
+ "Fatal assertion.*31363") {
gTakeUnstableCheckpointOnShutdown = true;
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
@@ -1592,7 +1592,7 @@ DEATH_TEST_REGEX_F(
DEATH_TEST_REGEX_F(
ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneWithTakeUnstableCheckpointOnShutdownFailsWithEmptyOplog,
- "Fatal Assertion.*31364") {
+ "Fatal assertion.*31364") {
gTakeUnstableCheckpointOnShutdown = true;
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
@@ -1606,7 +1606,7 @@ DEATH_TEST_REGEX_F(
DEATH_TEST_REGEX_F(
ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneWithTakeUnstableCheckpointOnShutdownFailsWithMismatchedAppliedThrough,
- "Fatal Assertion.*31365") {
+ "Fatal assertion.*31365") {
gTakeUnstableCheckpointOnShutdown = true;
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
@@ -1621,7 +1621,7 @@ DEATH_TEST_REGEX_F(
DEATH_TEST_REGEX_F(
ReplicationRecoveryTest,
RecoverFromOplogAsStandaloneWithTakeUnstableCheckpointOnShutdownFailsWithHighMinValid,
- "Fatal Assertion.*31366") {
+ "Fatal assertion.*31366") {
gTakeUnstableCheckpointOnShutdown = true;
ReplicationRecoveryImpl recovery(getStorageInterface(), getConsistencyMarkers());
diff --git a/src/mongo/db/repl/rs_rollback_test.cpp b/src/mongo/db/repl/rs_rollback_test.cpp
index d66c5c7c505..3571a1377d5 100644
--- a/src/mongo/db/repl/rs_rollback_test.cpp
+++ b/src/mongo/db/repl/rs_rollback_test.cpp
@@ -2176,7 +2176,7 @@ TEST(RSRollbackTest, LocalEntryWithoutOIsFatal) {
RSFatalException);
}
-DEATH_TEST_F(RSRollbackTest, LocalUpdateEntryWithoutO2IsFatal, "Fatal Assertion") {
+DEATH_TEST_F(RSRollbackTest, LocalUpdateEntryWithoutO2IsFatal, "Fatal assertion") {
const auto invalidOplogEntry = BSON("op"
<< "u"
<< "ui" << UUID::gen() << "ts" << Timestamp(1, 1) << "t"