Title: [124803] trunk/Tools
Revision
124803
Author
aba...@webkit.org
Date
2012-08-06 15:24:02 -0700 (Mon, 06 Aug 2012)

Log Message

REGRESSION(124789): EWS errors out because --print option is missing
https://bugs.webkit.org/show_bug.cgi?id=93299

Unreviewed.

The --print option doesn't exist anymore.  Let's try --quiet instead.

* Scripts/webkitpy/tool/steps/runtests.py:
(RunTests.run):
* Scripts/webkitpy/tool/steps/runtests_unittest.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (124802 => 124803)


--- trunk/Tools/ChangeLog	2012-08-06 21:59:06 UTC (rev 124802)
+++ trunk/Tools/ChangeLog	2012-08-06 22:24:02 UTC (rev 124803)
@@ -1,3 +1,16 @@
+2012-08-06  Adam Barth  <aba...@webkit.org>
+
+        REGRESSION(124789): EWS errors out because --print option is missing
+        https://bugs.webkit.org/show_bug.cgi?id=93299
+
+        Unreviewed.
+
+        The --print option doesn't exist anymore.  Let's try --quiet instead.
+
+        * Scripts/webkitpy/tool/steps/runtests.py:
+        (RunTests.run):
+        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
+
 2012-08-06  Ryosuke Niwa  <rn...@webkit.org>
 
         run-webkit-tests should have ability to add description to its JSON output

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py (124802 => 124803)


--- trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2012-08-06 21:59:06 UTC (rev 124802)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2012-08-06 22:24:02 UTC (rev 124803)
@@ -85,8 +85,7 @@
                 "--skip-failing-tests",
                 "--exit-after-n-failures=%s" % self.NON_INTERACTIVE_FAILURE_LIMIT_COUNT,
                 "--results-directory=%s" % self._tool.port().results_directory,
-                # We customize the printing options to avoid generating massive logs on the EWS and commit-queue.
-                "--print=actual,config,expected,misc,slowest,unexpected,unexpected-results",
+                "--quiet",
             ])
 
         if self._options.quiet:

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py (124802 => 124803)


--- trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py	2012-08-06 21:59:06 UTC (rev 124802)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py	2012-08-06 22:24:02 UTC (rev 124803)
@@ -41,6 +41,6 @@
         expected_stderr = """Running WebKit unit tests
 MOCK run_and_throw_if_fail: ['mock-run-webkit-unit-tests', '--gtest_output=xml:/mock-results/webkit_unit_tests_output.xml'], cwd=/mock-checkout
 Running run-webkit-tests
-MOCK run_and_throw_if_fail: ['mock-run-webkit-tests', '--no-new-test-results', '--no-launch-safari', '--skip-failing-tests', '--exit-after-n-failures=30', '--results-directory=/mock-results', '--print=actual,config,expected,misc,slowest,unexpected,unexpected-results'], cwd=/mock-checkout
+MOCK run_and_throw_if_fail: ['mock-run-webkit-tests', '--no-new-test-results', '--no-launch-safari', '--skip-failing-tests', '--exit-after-n-failures=30', '--results-directory=/mock-results', '--quiet'], cwd=/mock-checkout
 """
         OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to