[JAEGER] Bug 589349 tweak: set default --jitflags to 'j' to keep old behavior by default and avoid tinderbox orange due to recursion count difference

This commit is contained in:
David Mandelin 2010-08-25 15:59:17 -07:00
parent ba29f93a3c
commit 9f589f01cf

View File

@ -299,7 +299,7 @@ if __name__ == '__main__':
help='Enable the |valgrind| flag, if valgrind is in $PATH.')
op.add_option('--valgrind-all', dest='valgrind_all', action='store_true',
help='Run all tests with valgrind, if valgrind is in $PATH.')
op.add_option('--jitflags', dest='jitflags', default='j,m,mj',
op.add_option('--jitflags', dest='jitflags', default='j',
help='Example: --jitflags=j,mj to run each test with -j and -m -j')
(OPTIONS, args) = op.parse_args()
if len(args) < 1: