summaryrefslogtreecommitdiff
path: root/jstests/disk/killall.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-02-01 12:08:50 -0800
committerAaron <aaron@10gen.com>2011-02-01 12:08:50 -0800
commit841a56ba4caf9cfff8c456cf183c78d7c2a61ab5 (patch)
treeae5f695849b6565456fe36997d9214c7de597732 /jstests/disk/killall.js
parentaa7977f986a25f8e046c61fa2199ebcdb6bb77ad (diff)
downloadmongo-841a56ba4caf9cfff8c456cf183c78d7c2a61ab5.tar.gz
SERVER-2076 disable test in v8 mode
Diffstat (limited to 'jstests/disk/killall.js')
-rw-r--r--jstests/disk/killall.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/jstests/disk/killall.js b/jstests/disk/killall.js
index 5aec93896d1..a1487bba130 100644
--- a/jstests/disk/killall.js
+++ b/jstests/disk/killall.js
@@ -1,6 +1,8 @@
// running ops should be killed
// dropped collection should be ok after restart
+if ( typeof _threadInject == "undefined" ) { // don't run in v8 mode - SERVER-2076
+
port = allocatePorts( 1 )[ 0 ]
var baseName = "jstests_disk_killall";
@@ -36,3 +38,5 @@ m.getDB( "test" ).getCollection( baseName ).stats();
m.getDB( "test" ).getCollection( baseName ).drop();
stopMongod( port );
+
+} \ No newline at end of file