| Index: third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftest.py b/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftest.py
|
| index 814bfead52a622b68b47b3a270eddc035b956b1f..776ddda7ba5bc1041a3b8fc74c6b0a2e4ca31236 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/perftest.py
|
| @@ -198,7 +198,12 @@ class PerfTest(object):
|
|
|
| def run_single(self, driver, test_path, time_out_ms, should_run_pixel_test=False):
|
| return driver.run_test(
|
| - DriverInput(test_path, time_out_ms, image_hash=None, should_run_pixel_test=should_run_pixel_test, args=[]), stop_when_done=False)
|
| + DriverInput(test_path,
|
| + time_out_ms,
|
| + image_hash=None,
|
| + should_run_pixel_test=should_run_pixel_test,
|
| + args=[]),
|
| + stop_when_done=False)
|
|
|
| def run_failed(self, output):
|
| if output.error:
|
| @@ -246,7 +251,8 @@ class PerfTest(object):
|
| # Following is for html5.html
|
| re.compile(re.escape("""Blocked access to external URL http://www.whatwg.org/specs/web-apps/current-work/""")),
|
| re.compile(
|
| - r"CONSOLE MESSAGE: (line \d+: )?Blocked script execution in '[A-Za-z0-9\-\.:]+' because the document's frame is sandboxed and the 'allow-scripts' permission is not set."),
|
| + r"CONSOLE MESSAGE: (line \d+: )?Blocked script execution in '[A-Za-z0-9\-\.:]+' "
|
| + "because the document's frame is sandboxed and the 'allow-scripts' permission is not set."),
|
| re.compile(r"CONSOLE MESSAGE: (line \d+: )?Not allowed to load local resource"),
|
| # Dromaeo reports values for subtests. Ignore them for now.
|
| re.compile(r'(?P<name>.+): \[(?P<values>(\d+(.\d+)?,\s+)*\d+(.\d+)?)\]'),
|
|
|