summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2010-03-09 10:27:55 -0800
committerAaron <aaron@10gen.com>2010-03-09 10:27:55 -0800
commit7c4cd36d0a306f5f2a77b8585836d96e356da92b (patch)
treeb03420011c693397203dc5330c3c0cb457d17cf3
parentdee49ac08054969d23fc969a67e20324af134d36 (diff)
downloadmongo-7c4cd36d0a306f5f2a77b8585836d96e356da92b.tar.gz
SERVER-705 disable test for v8
-rw-r--r--jstests/repl/master1.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/jstests/repl/master1.js b/jstests/repl/master1.js
index 9f021fc6a2a..72f3de6a739 100644
--- a/jstests/repl/master1.js
+++ b/jstests/repl/master1.js
@@ -1,5 +1,7 @@
// Test handling of clock skew and optimes across mongod instances
+if ( typeof( BinData ) != "undefined" ) { // don't run in v8
+
var baseName = "jstests_repl_master1test";
oplog = function() {
@@ -46,4 +48,6 @@ assert.eq( op.ts.i, lastop().ts.i );
am().save( {} );
sleep( 3000 ); // make sure dies on its own before stop() called
-assert.eq( 47 /*EXIT_CLOCK_SKEW*/, rt.stop( true ) ); \ No newline at end of file
+assert.eq( 47 /*EXIT_CLOCK_SKEW*/, rt.stop( true ) );
+
+} \ No newline at end of file