summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Pasette <dan@10mongodb.com>2014-11-24 15:58:00 -0500
committerDan Pasette <dan@mongodb.com>2014-11-24 15:58:00 -0500
commitf81009f1d2604d153cdeda9fb106dc86247e12f4 (patch)
treed21448b8c2e42c7cafc65ce70eab26f0eb620f89
parent4de3bd6c93195d0ccc23df67859b9c6441ec24d4 (diff)
downloadmongo-f81009f1d2604d153cdeda9fb106dc86247e12f4.tar.gz
SERVER-12058 fix repl/master1.js
Expect the server to ABRUPT_EXIT when we catch clock skew exceptions in logOp
-rw-r--r--jstests/repl/master1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/repl/master1.js b/jstests/repl/master1.js
index 9f021fc6a2a..5f4f2ec5ae3 100644
--- a/jstests/repl/master1.js
+++ b/jstests/repl/master1.js
@@ -46,4 +46,4 @@ 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.neq( 0 /*EXIT_ABRUPT == 14 */, rt.stop( true ) );