Changeset 56743 in webkit


Ignore:
Timestamp:
Mar 29, 2010 3:20:25 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-29 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

new-run-webkit-tests fails java/lc3 on a clean checkout
https://bugs.webkit.org/show_bug.cgi?id=36078

  • Scripts/webkitpy/layout_tests/port/mac.py:
    • Build the java support files in check_build
    • Unwrap a line which would still fit under 80col
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56740 r56743  
     12010-03-29  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        new-run-webkit-tests fails java/lc3 on a clean checkout
     6        https://bugs.webkit.org/show_bug.cgi?id=36078
     7
     8        * Scripts/webkitpy/layout_tests/port/mac.py:
     9         - Build the java support files in check_build
     10         - Unwrap a line which would still fit under 80col
     11
    1122010-02-26  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py

    r56648 r56743  
    7878        if self._options.target == "Debug":
    7979            build_drt_command.append('--debug')
    80         if executive.run_command(build_drt_command,
    81                                  return_exit_code=True):
     80        if executive.run_command(build_drt_command, return_exit_code=True):
    8281            return False
    8382
     
    9089        if not os.path.exists(image_diff_path):
    9190            _log.error("ImageDiff was not found at %s" % image_diff_path)
     91            return False
     92
     93        java_tests_path = os.path.join(self.layout_tests_dir(), "java")
     94        build_java = ["/usr/bin/make", "-C", java_tests_path]
     95        if executive.run_command(build_java, return_exit_code=True):
     96            _log.error("Failed to build Java support files: %s" % build_java)
    9297            return False
    9398
Note: See TracChangeset for help on using the changeset viewer.