summaryrefslogtreecommitdiff
path: root/jstests/objid5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/objid5.js')
-rw-r--r--jstests/objid5.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/jstests/objid5.js b/jstests/objid5.js
index 9a26839..f85ebc8 100644
--- a/jstests/objid5.js
+++ b/jstests/objid5.js
@@ -6,13 +6,14 @@ t.save( { _id : 5.5 } );
assert.eq( 18 , Object.bsonsize( t.findOne() ) , "A" );
x = db.runCommand( { features : 1 } )
-y = db.runCommand( { features : 1 , oidReset : 1 } )
-
-if( !x.ok )
+y = db.runCommand( { features : 1 , oidReset : 1 } )
+
+if( !x.ok )
print("x: " + tojson(x));
assert( x.oidMachine , "B1" )
assert.neq( x.oidMachine , y.oidMachine , "B2" )
assert.eq( x.oidMachine , y.oidMachineOld , "B3" )
-assert.eq( 18 , Object.bsonsize( { _id : 7.7 } ) , "C" )
+assert.eq( 18 , Object.bsonsize( { _id : 7.7 } ) , "C1" )
+assert.eq( 0 , Object.bsonsize( null ) , "C2" )