From 543bf9945a662d6aba31df847cd9153c28b440eb Mon Sep 17 00:00:00 2001 From: Misha Tyulenev Date: Fri, 12 Feb 2016 17:00:02 -0500 Subject: SERVER-22319 remove SCCC tests from testcases --- jstests/httpinterface/sharding_configdb_on_default_ports.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'jstests/httpinterface') diff --git a/jstests/httpinterface/sharding_configdb_on_default_ports.js b/jstests/httpinterface/sharding_configdb_on_default_ports.js index 9c4f2f8605c..4472a7a515b 100644 --- a/jstests/httpinterface/sharding_configdb_on_default_ports.js +++ b/jstests/httpinterface/sharding_configdb_on_default_ports.js @@ -29,16 +29,5 @@ c2 = MongoRunner.runMongod({configsvr: "", storageEngine: "wiredTiger"}); c3 = MongoRunner.runMongod({configsvr: "", storageEngine: "wiredTiger"}); - var configstrs = [ - getHostPart(c1.host) + "," + c2.host + "," + c3.host, - getHostPart(c1.host), - "csrs/" + getHostPart(c1.host) - ]; - var failureMessages = []; - configstrs.forEach(function (configdb) { - if (!MongoRunner.runMongos({configdb: configdb})) { - failureMessages.push("Failed to start mongos with configdb=\"" + configdb + "\""); - } - }); - assert.eq(0, failureMessages.length, tojson(failureMessages)); + assert(MongoRunner.runMongos({configdb: "csrs/" + getHostPart(c1.host) })); }()); -- cgit v1.2.1