Files
mongo/jstests/disk/diskfull.js

15 lines
672 B
JavaScript

port = allocatePorts( 1 )[ 0 ];
doIt = true;
try {
m = startMongoProgram( "mongod", "--port", port, "--dbpath", "/data/db/diskfulltest", "--nohttpinterface", "--bind_ip", "127.0.0.1" );
} catch ( e ) {
print( "path /data/db/diskfulltest/ missing, skipping diskfull test" );
doIt = false;
}
if ( doIt ) {
m.getDB( "diskfulltest" ).getCollection( "diskfulltest" ).save( { a: 6 } );
assert.soon( function() { return rawMongoProgramOutput().match( /dbexit: really exiting now/ ); }, "didn't see 'really exiting now'" );
assert( !rawMongoProgramOutput().match( /Got signal/ ), "saw 'Got signal', not expected. Output: " + rawMongoProgramOutput() );
}