summaryrefslogtreecommitdiff
path: root/jstests/disk/wt_corrupt_file_errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/disk/wt_corrupt_file_errors.js')
-rw-r--r--jstests/disk/wt_corrupt_file_errors.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/disk/wt_corrupt_file_errors.js b/jstests/disk/wt_corrupt_file_errors.js
index 28fa915002e..ec1f76b3a52 100644
--- a/jstests/disk/wt_corrupt_file_errors.js
+++ b/jstests/disk/wt_corrupt_file_errors.js
@@ -32,7 +32,7 @@ assertErrorOnRequestWhenFilesAreCorruptOrMissing(
testColl.insert({a: 1});
});
},
- "Fatal Assertion 50882");
+ new RegExp("Fatal Assertion.*50882"));
/**
* Test 2. Corrupt the _mdb_catalog.
@@ -43,7 +43,7 @@ assertErrorOnStartupWhenFilesAreCorruptOrMissing(dbpath, baseName, collName, (mo
const mdbCatalogFile = dbpath + "_mdb_catalog.wt";
jsTestLog("corrupting catalog file: " + mdbCatalogFile);
corruptFile(mdbCatalogFile);
-}, "Fatal Assertion 50882");
+}, new RegExp("Fatal Assertion.*50882"));
/**
* Test 3. Corrupt the WiredTiger.wt.
@@ -54,7 +54,7 @@ assertErrorOnStartupWhenFilesAreCorruptOrMissing(dbpath, baseName, collName, (mo
const WiredTigerWTFile = dbpath + "WiredTiger.wt";
jsTestLog("corrupting WiredTiger.wt");
corruptFile(WiredTigerWTFile);
-}, "Fatal Assertion 50944");
+}, new RegExp("Fatal Assertion.*50944"));
/**
* Test 4. Corrupt an index file.
@@ -80,5 +80,5 @@ assertErrorOnRequestWhenFilesAreCorruptOrMissing(
testColl.insert({a: 1});
});
},
- "Fatal Assertion 50882");
+ new RegExp("Fatal Assertion.*50882"));
})();