summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiyuan Zhou <siyuan.zhou@mongodb.com>2015-01-05 13:53:42 -0500
committerSiyuan Zhou <siyuan.zhou@mongodb.com>2015-01-05 14:35:25 -0500
commit5c3e3df015d8bdb8703accb4f24ee7657fa2ba50 (patch)
treed91848a959b616ce1cf2301b1e2f14d256763fe3
parent12d82c741061da23a442086465322352f157d094 (diff)
downloadmongo-5c3e3df015d8bdb8703accb4f24ee7657fa2ba50.tar.gz
SERVER-16660 Add comments to sharding_system_namespaces.js
-rw-r--r--jstests/sharding/sharding_system_namespaces.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/jstests/sharding/sharding_system_namespaces.js b/jstests/sharding/sharding_system_namespaces.js
index ed1f3ac578d..7d8121da24a 100644
--- a/jstests/sharding/sharding_system_namespaces.js
+++ b/jstests/sharding/sharding_system_namespaces.js
@@ -16,6 +16,9 @@ var st = new ShardingTest({ shards : 2 });
var db = st.s.getDB("test");
var coll = db.sharding_system_namespaces;
+// This test relies on the wiredTiger storage engine being compiled
+// into the server. This assumption does not hold on 32-bit platforms.
+// See SERVER-16660.
if (db.serverBuildInfo().bits != 32) {
function checkCollectionOptions(database) {