Changeset 90864 in webkit


Ignore:
Timestamp:
Jul 12, 2011 3:35:28 PM (13 years ago)
Author:
abarth@webkit.org
Message:

cr-linux-ews should run pixel tests
https://bugs.webkit.org/show_bug.cgi?id=64394

Reviewed by Ojan Vafai.

This patch enabled pixel test on the cr-linux-ews. Running a quick
test on the bots, it looks like we have five pixel failures, related to
some missing fonts. I've also made the bots skip failing tests to
avoid uploading huge zip files to bugs.webkit.org (with all the exected
IMAGE failures).

  • 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

    r90856 r90864  
     12011-07-12  Adam Barth  <abarth@webkit.org>
     2
     3        cr-linux-ews should run pixel tests
     4        https://bugs.webkit.org/show_bug.cgi?id=64394
     5
     6        Reviewed by Ojan Vafai.
     7
     8        This patch enabled pixel test on the cr-linux-ews.  Running a quick
     9        test on the bots, it looks like we have five pixel failures, related to
     10        some missing fonts.  I've also made the bots skip failing tests to
     11        avoid uploading huge zip files to bugs.webkit.org (with all the exected
     12        IMAGE failures).
     13
     14        * Scripts/webkitpy/common/config/ports.py:
     15        * Scripts/webkitpy/common/config/ports_unittest.py:
     16
    1172011-07-12  Joseph Pecoraro  <joepeck@webkit.org>
    218
  • trunk/Tools/Scripts/webkitpy/common/config/ports.py

    r90543 r90864  
    246246        command = cls.script_shell_command("new-run-webkit-tests")
    247247        command.append("--chromium")
    248         command.append("--no-pixel-tests")
     248        command.append("--skip-failing-tests")
    249249        return command
    250250
  • trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py

    r85960 r90864  
    6565        self.assertEquals(ChromiumPort.name(), "Chromium")
    6666        self.assertEquals(ChromiumPort.flag(), "--port=chromium")
    67         self.assertEquals(ChromiumPort.run_webkit_tests_command(), [WebKitPort.script_path("new-run-webkit-tests"), "--chromium", "--no-pixel-tests"])
     67        self.assertEquals(ChromiumPort.run_webkit_tests_command(), [WebKitPort.script_path("new-run-webkit-tests"), "--chromium", "--skip-failing-tests"])
    6868        self.assertEquals(ChromiumPort.build_webkit_command(), [WebKitPort.script_path("build-webkit"), "--chromium", "--update-chromium"])
    6969        self.assertEquals(ChromiumPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug", "--chromium", "--update-chromium"])
     
    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', '--skip-failing-tests', '--print=actual,config,expected,misc,slowest,unexpected,unexpected-results'])
     73        self.assertEquals(ChromiumXVFBPort.run_webkit_tests_command(), ['xvfb-run', 'Tools/Scripts/new-run-webkit-tests', '--chromium', '--skip-failing-tests', '--results-directory=/tmp/layout-test-results', '--skip-failing-tests', '--print=actual,config,expected,misc,slowest,unexpected,unexpected-results'])
    7474
    7575if __name__ == '__main__':
Note: See TracChangeset for help on using the changeset viewer.