Files
mongo/jstests/profile2.js
2011-10-17 18:12:17 -07:00

21 lines
472 B
JavaScript

print("profile2.js BEGIN");
try {
assert.commandWorked( db.runCommand( {profile:2} ) );
var str = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
huge = str;
while (huge.length < 2*1024*1024){
huge += str;
}
db.profile2.count({huge:huge}) // would make a huge entry in db.system.profile
print("profile2.js SUCCESS OK");
} finally {
// disable profiling for subsequent tests
assert.commandWorked( db.runCommand( {profile:0} ) );
}