Title: [145764] trunk/Tools
Revision
145764
Author
aba...@webkit.org
Date
2013-03-13 15:34:12 -0700 (Wed, 13 Mar 2013)

Log Message

run-perf-tests should support content_shell
https://bugs.webkit.org/show_bug.cgi?id=112291

Reviewed by Eric Seidel.

* Scripts/webkitpy/performance_tests/perftestsrunner.py:
(PerfTestsRunner._parse_args):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (145763 => 145764)


--- trunk/Tools/ChangeLog	2013-03-13 22:30:50 UTC (rev 145763)
+++ trunk/Tools/ChangeLog	2013-03-13 22:34:12 UTC (rev 145764)
@@ -1,3 +1,13 @@
+2013-03-13  Adam Barth  <aba...@webkit.org>
+
+        run-perf-tests should support content_shell
+        https://bugs.webkit.org/show_bug.cgi?id=112291
+
+        Reviewed by Eric Seidel.
+
+        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
+        (PerfTestsRunner._parse_args):
+
 2013-03-13  Oliver Hunt  <oli...@apple.com>
 
         Simplify Checked<> multiplication

Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py (145763 => 145764)


--- trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2013-03-13 22:30:50 UTC (rev 145763)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2013-03-13 22:34:12 UTC (rev 145764)
@@ -234,6 +234,9 @@
         re.compile(r'^Unknown option:'),
         re.compile(r'^\[WARNING:proxy_service.cc'),
         re.compile(r'^\[INFO:'),
+        # These stderr messages come from content_shell on chromium-linux.
+        re.compile(r'INFO:SkFontHost_fontconfig.cpp'),
+        re.compile(r'Running without the SUID sandbox'),
     ]
 
     _lines_to_ignore_in_parser_result = [

Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py (145763 => 145764)


--- trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py	2013-03-13 22:30:50 UTC (rev 145763)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py	2013-03-13 22:34:12 UTC (rev 145764)
@@ -127,6 +127,8 @@
             optparse.make_option("--additional-drt-flag", action=""
                 default=[], help="Additional command line flag to pass to DumpRenderTree "
                      "Specify multiple times to add multiple flags."),
+            optparse.make_option("--driver-name", type="string",
+                help="Alternative DumpRenderTree binary to use"),
             optparse.make_option("--repeat", default=1, type="int",
                 help="Specify number of times to run test set (default: 1)."),
             optparse.make_option("--test-runner-count", default=DEFAULT_TEST_RUNNER_COUNT, type="int",
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to