diff options
| -rw-r--r-- | src/third_party/wiredtiger/import.data | 2 | ||||
| -rw-r--r-- | src/third_party/wiredtiger/test/csuite/timestamp_abort/main.c | 7 | ||||
| -rwxr-xr-x | src/third_party/wiredtiger/test/csuite/timestamp_abort/smoke.sh | 5 |
3 files changed, 12 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data index f328b2543e4..ea267379cfe 100644 --- a/src/third_party/wiredtiger/import.data +++ b/src/third_party/wiredtiger/import.data @@ -2,5 +2,5 @@ "vendor": "wiredtiger", "github": "wiredtiger/wiredtiger.git", "branch": "mongodb-7.2", - "commit": "db2c6172daad8abbb797d79bec240191dc292b63" + "commit": "be4538d91a80cd5dbe3a3a78315ba298a71336f0" } diff --git a/src/third_party/wiredtiger/test/csuite/timestamp_abort/main.c b/src/third_party/wiredtiger/test/csuite/timestamp_abort/main.c index 9a72cb715f2..0862553bb20 100644 --- a/src/third_party/wiredtiger/test/csuite/timestamp_abort/main.c +++ b/src/third_party/wiredtiger/test/csuite/timestamp_abort/main.c @@ -1770,6 +1770,13 @@ main(int argc, char *argv[]) */ testutil_parse_end_opt(opts); + /* + * Don't allow testing backups in the compatibility mode. MongoDB no longer uses it, and the + * compatibility mode is inherently incompatible with backup-related fixes that add new log + * records. So disallow the test. + */ + testutil_assert(!(opts->compat && use_backups)); + testutil_work_dir_from_path(home, sizeof(home), opts->home); /* diff --git a/src/third_party/wiredtiger/test/csuite/timestamp_abort/smoke.sh b/src/third_party/wiredtiger/test/csuite/timestamp_abort/smoke.sh index 3194e47f4a2..a47c757efd0 100755 --- a/src/third_party/wiredtiger/test/csuite/timestamp_abort/smoke.sh +++ b/src/third_party/wiredtiger/test/csuite/timestamp_abort/smoke.sh @@ -33,6 +33,9 @@ $TEST_WRAPPER $test_bin -m $default_test_args -c #$TEST_WRAPPER $test_bin -m $default_test_args -L $TEST_WRAPPER $test_bin -C $default_test_args $TEST_WRAPPER $test_bin -C $default_test_args -c -$TEST_WRAPPER $test_bin -C $default_test_args -B -I 3 $TEST_WRAPPER $test_bin -C -m $default_test_args $TEST_WRAPPER $test_bin -C -m $default_test_args -c + +# Don't test backups in the compatibility mode. MongoDB no longer uses it, and the compatibility +# mode is inherently incompatible with backup-related fixes that add new log records. +#$TEST_WRAPPER $test_bin -C $default_test_args -B -I 3 |
