Bump jstests.py timeout limit to 150s; reftest harness times out at 300s now, so this both substantially raises the ceiling and doesn't raise it so far that a fast-in-shell-but-slow-in-browser test might time out only in browser, or at least that's the hope. r=flakiness

This commit is contained in:
Jeff Walden 2010-06-02 17:04:37 -07:00
parent ac912dfcf4
commit f689b9994b

View File

@ -205,7 +205,7 @@ if __name__ == '__main__':
help='number of worker threads to run tests on (default 2)')
op.add_option('-m', '--manifest', dest='manifest',
help='select manifest file')
op.add_option('-t', '--timeout', dest='timeout', type=float, default=60.0,
op.add_option('-t', '--timeout', dest='timeout', type=float, default=150.0,
help='set test timeout in seconds')
op.add_option('-d', '--exclude-random', dest='random', action='store_false',
help='exclude tests marked random', default=True)