12017-01-30 Carlos Alberto Lopez Perez <clopez@igalia.com>
2
3 run-perf-tests timeout settings broken
4 https://bugs.webkit.org/show_bug.cgi?id=167626
5
6 Reviewed by NOBODY (OOPS!).
7
8 The --time-out-ms value (defaults to 600 seconds) of run-perf-tests
9 was beeing ignored because the driver was created with no_timeout=True
10 unconditionally.
11 This adds a new parameter --no-timeout (disabled by default), that
12 allows to use the driver with the expected timeout values.
13
14 * Scripts/webkitpy/performance_tests/perftest.py:
15 (PerfTest._create_driver): Only disable timeout if --no-timeout is passed.
16 (PerfTest.run):
17 * Scripts/webkitpy/performance_tests/perftestsrunner.py:
18 (PerfTestsRunner._parse_args): Add a --no-timeout parameter.
19 (_run_tests_set):
20