blob: f5f89643f16899d619f6ccac0a5e90e17d243130 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SlowWeeklyMongod = function( name ) {
this.name = name;
this.port = 30201;
this.start = new Date();
this.conn = startMongodEmpty("--port", this.port, "--dbpath", MongoRunner.dataPath + this.name , "--smallfiles", "--nojournal" );
};
SlowWeeklyMongod.prototype.getDB = function( name ) {
return this.conn.getDB( name );
}
SlowWeeklyMongod.prototype.stop = function(){
stopMongod( this.port );
var end = new Date();
print( "slowWeekly test: " + this.name + " completed successfully in " + ( ( end.getTime() - this.start.getTime() ) / 1000 ) + " seconds" );
};
|