Title: [122289] trunk/Tools
Revision
122289
Author
[email protected]
Date
2012-07-10 19:26:53 -0700 (Tue, 10 Jul 2012)

Log Message

Add --no-build option to perf test runner
https://bugs.webkit.org/show_bug.cgi?id=90916

Reviewed by Ryosuke Niwa.

* Scripts/webkitpy/performance_tests/perftestsrunner.py:
(PerfTestsRunner._parse_args):
    Support --no-build option to perf tests, as in layout tests.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (122288 => 122289)


--- trunk/Tools/ChangeLog	2012-07-11 02:21:50 UTC (rev 122288)
+++ trunk/Tools/ChangeLog	2012-07-11 02:26:53 UTC (rev 122289)
@@ -1,3 +1,14 @@
+2012-07-10  Kenneth Russell  <[email protected]>
+
+        Add --no-build option to perf test runner
+        https://bugs.webkit.org/show_bug.cgi?id=90916
+
+        Reviewed by Ryosuke Niwa.
+
+        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
+        (PerfTestsRunner._parse_args):
+            Support --no-build option to perf tests, as in layout tests.
+
 2012-07-10  Adam Barth  <[email protected]>
 
         EWSTools should be able to build a chromium-ews bot from scratch

Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py (122288 => 122289)


--- trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py	2012-07-11 02:21:50 UTC (rev 122288)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py	2012-07-11 02:26:53 UTC (rev 122289)
@@ -85,6 +85,8 @@
                 help=("The build number of the builder running this script.")),
             optparse.make_option("--build", dest="build", action="" default=True,
                 help="Check to ensure the DumpRenderTree build is up-to-date (default)."),
+            optparse.make_option("--no-build", dest="build", action=""
+                help="Don't check to see if the DumpRenderTree build is up-to-date."),
             optparse.make_option("--build-directory",
                 help="Path to the directory under which build files are kept (should not include configuration)"),
             optparse.make_option("--time-out-ms", default=600 * 1000,
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to