0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

multiline regex match

This commit is contained in:
Eliot Horowitz 2009-10-12 14:43:38 -04:00
parent c628c7b93f
commit dafa356e70

View File

@ -140,7 +140,7 @@ f.a.save( { i: -1 } );
waitParallel();
// even after parallel shell finished, must wait for finishToken line to appear in log
assert.soon( function() {
ret = rawMongoProgramOutput().match( /clone_clone_clone_commandResult:::::(.*):::::/ );
ret = rawMongoProgramOutput().match( /clone_clone_clone_commandResult:::::(.*):::::/gm );
if ( ret == null ) {
return false;
}