0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
This commit is contained in:
Aaron 2010-04-08 12:24:59 -07:00
parent 0efadc48e9
commit f06d17a35b

View File

@ -123,10 +123,10 @@ ret = finishstartclone();
finishclone( ret ); finishclone( ret );
assert.eq( 100000, t.a.find().count() ); assert.eq( 100000, t.a.find().count() );
assert.eq( 1, t.a.find( { i: 200000 } ).count() ); assert.eq( 1, t.a.find( { i: 200000 } ).count(), "CA" );
assert.eq( 0, t.a.find( { i: -1 } ).count() ); assert.eq( 0, t.a.find( { i: -1 } ).count() );
assert.eq( 0, t.a.find( { i: 0 } ).count() ); assert.eq( 0, t.a.find( { i: 0 } ).count() );
assert.eq( 1, t.a.find( { i: 99998, x: "y" } ).count() ); assert.eq( 1, t.a.find( { i: 99998, x: "y" } ).count(), "CB" );
// Now test oplog running out of space -- specify small size clone oplog for test. // Now test oplog running out of space -- specify small size clone oplog for test.