Bug 1019821 - Run slow jit tests when asked to. r=jandem

This commit is contained in:
Lars T Hansen 2014-06-04 02:25:00 +02:00
Родитель b6333c93ee
Коммит becdb760ad
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -42,8 +42,10 @@ def main(argv):
help='show output from js shell')
op.add_option('-x', '--exclude', dest='exclude', action='append',
help='exclude given test dir or path')
op.add_option('--slow', dest='run_slow', action='store_true',
help='also run tests marked as slow')
op.add_option('--no-slow', dest='run_slow', action='store_false',
help='do not run tests marked as slow')
help='do not run tests marked as slow (the default)')
op.add_option('-t', '--timeout', dest='timeout', type=float, default=150.0,
help='set test timeout in seconds')
op.add_option('--no-progress', dest='hide_progress', action='store_true',