SERVER-80717 Avoid shard merge tests in non-enterprise multiversion suite.
This commit is contained in:
parent
d0c8613d72
commit
c19a106e91
@ -13,6 +13,11 @@ import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.j
|
||||
import {makeTenantDB} from "jstests/replsets/libs/tenant_migration_util.js";
|
||||
import {setLogVerbosity} from "jstests/replsets/rslib.js";
|
||||
|
||||
if (!buildInfo()["modules"].includes("enterprise")) {
|
||||
jsTestLog("Skipping test as it requires the enterprise module");
|
||||
quit();
|
||||
}
|
||||
|
||||
const tenantMigrationTest = new TenantMigrationTest({name: jsTestName()});
|
||||
|
||||
const tenantId = ObjectId().str;
|
||||
|
||||
@ -12,6 +12,11 @@ import {extractUUIDFromObject} from "jstests/libs/uuid_util.js";
|
||||
import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.js";
|
||||
import {isShardMergeEnabled, makeTenantDB} from "jstests/replsets/libs/tenant_migration_util.js";
|
||||
|
||||
if (!buildInfo()["modules"].includes("enterprise")) {
|
||||
jsTestLog("Skipping test as it requires the enterprise module");
|
||||
quit();
|
||||
}
|
||||
|
||||
function runTest(downgradeFCV) {
|
||||
const tenantMigrationTest = new TenantMigrationTest({name: jsTestName()});
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@ import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.j
|
||||
import {makeTenantDB} from "jstests/replsets/libs/tenant_migration_util.js";
|
||||
import {setLogVerbosity} from "jstests/replsets/rslib.js";
|
||||
|
||||
if (!buildInfo()["modules"].includes("enterprise")) {
|
||||
jsTestLog("Skipping test as it requires the enterprise module");
|
||||
quit();
|
||||
}
|
||||
|
||||
const tenantMigrationTest = new TenantMigrationTest({name: jsTestName()});
|
||||
|
||||
const tenantId = ObjectId().str;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user