summaryrefslogtreecommitdiff
path: root/jstests/core/list_indexes.js
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2015-07-27 14:41:53 -0400
committerDavid Storch <david.storch@10gen.com>2015-07-27 16:29:46 -0400
commitd2f66cef3c01eef0629926ec27b5eb5080a97858 (patch)
treef052a5f05150827531612c09b0f6a73d064fe931 /jstests/core/list_indexes.js
parentf13c593b399718cde59f096a65b3f2131f067f16 (diff)
downloadmongo-d2f66cef3c01eef0629926ec27b5eb5080a97858.tar.gz
SERVER-19570 disable tests
Diffstat (limited to 'jstests/core/list_indexes.js')
-rw-r--r--jstests/core/list_indexes.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jstests/core/list_indexes.js b/jstests/core/list_indexes.js
index db3f895bc20..7f0a9e8a45c 100644
--- a/jstests/core/list_indexes.js
+++ b/jstests/core/list_indexes.js
@@ -151,9 +151,10 @@
//
// Test killCursors against a listCollections cursor.
+ // TODO: re-enable after implementing SERVER-19570.
//
- coll.drop();
+ /*coll.drop();
assert.commandWorked(coll.getDB().createCollection(coll.getName()));
assert.commandWorked(coll.ensureIndex({a: 1}, {unique: true}));
assert.commandWorked(coll.ensureIndex({b: 1}, {unique: true}));
@@ -164,5 +165,5 @@
cursor = null;
gc(); // Shell will send a killCursors message when cleaning up underlying cursor.
cursor = new DBCommandCursor(coll.getDB().getMongo(), res, 2);
- assert.throws(function() { cursor.hasNext(); });
+ assert.throws(function() { cursor.hasNext(); });*/
}());