Changeset 85786 in webkit


Ignore:
Timestamp:
May 4, 2011 2:12:08 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-05-04 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Make the EWS test logging less verbose
https://bugs.webkit.org/show_bug.cgi?id=60201

This should help us generate less than a hundred MB of logs per hour.

  • Scripts/webkitpy/common/config/ports.py:
  • Scripts/webkitpy/common/config/ports_unittest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85785 r85786  
     12011-05-04  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Make the EWS test logging less verbose
     6        https://bugs.webkit.org/show_bug.cgi?id=60201
     7
     8        This should help us generate less than a hundred MB of logs per hour.
     9
     10        * Scripts/webkitpy/common/config/ports.py:
     11        * Scripts/webkitpy/common/config/ports_unittest.py:
     12
    1132011-05-04  Tao Bai  <michaelbai@chromium.org>
    214
  • trunk/Tools/Scripts/webkitpy/common/config/ports.py

    r85465 r85786  
    270270        return ["xvfb-run"] + ChromiumPort.run_webkit_tests_command() + [
    271271            "--results-directory=%s" % cls.results_directory,
    272             "--verbose",
     272            "--print=actual,config,expected,misc,slowest,unexpected,unexpected-results",
    273273        ]
    274274
  • trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py

    r85465 r85786  
    7171
    7272    def test_chromium_xvfb_port(self):
    73         self.assertEquals(ChromiumXVFBPort.run_webkit_tests_command(), ['xvfb-run', 'Tools/Scripts/new-run-webkit-tests', '--chromium', '--no-pixel-tests', '--results-directory=/tmp/layout-test-results', '--verbose'])
     73        self.assertEquals(ChromiumXVFBPort.run_webkit_tests_command(), ['xvfb-run', 'Tools/Scripts/new-run-webkit-tests', '--chromium', '--no-pixel-tests', '--results-directory=/tmp/layout-test-results', '--print=actual,config,expected,misc,slowest,unexpected,unexpected-results'])
    7474
    7575if __name__ == '__main__':
Note: See TracChangeset for help on using the changeset viewer.