Skip to content

Commit

Permalink
SERVER-4237 Make disk/repair5.js use startMongodTest instead of start…
Browse files Browse the repository at this point in the history
…MongoProgram so running with auth works
  • Loading branch information
stbrody committed Oct 5, 2012
1 parent f82aa28 commit 9f6d290
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jstests/disk/repair5.js
Expand Up @@ -9,7 +9,11 @@ repairpath = dbpath + "repairDir/"
resetDbpath( dbpath );
resetDbpath( repairpath );

m = startMongoProgram( "mongod", "--port", port, "--dbpath", dbpath, "--repairpath", repairpath, "--nohttpinterface", "--bind_ip", "127.0.0.1" );
m = startMongodTest(port,
baseName + "/",
true,
{repairpath : repairpath, nohttpinterface : "", bind_ip : "127.0.0.1"});

db = m.getDB( baseName );

big = new Array( 5000 ).toString();
Expand Down

0 comments on commit 9f6d290

Please sign in to comment.