Changeset 57253 in webkit


Ignore:
Timestamp:
Apr 7, 2010 11:55:49 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-04-07 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

new-run-webkit-tests crashes when run on a 64-bit machine
https://bugs.webkit.org/show_bug.cgi?id=37248

  • Scripts/webkitpy/layout_tests/port/mac.py:
    • The code was trying to always run the 32-bit intel version of the DumpRenderTree binary. DRT does not build 32-bit on 64-bit machines so that makes no sense. This may have made sense for test_shell at some point, but I think we should just remove this for DRT.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57249 r57253  
     12010-04-07  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        new-run-webkit-tests crashes when run on a 64-bit machine
     6        https://bugs.webkit.org/show_bug.cgi?id=37248
     7
     8        * Scripts/webkitpy/layout_tests/port/mac.py:
     9         - The code was trying to always run the 32-bit intel version
     10           of the DumpRenderTree binary.  DRT does not build 32-bit on 64-bit
     11           machines so that makes no sense.  This may have made sense for test_shell
     12           at some point, but I think we should just remove this for DRT.
     13
    1142010-04-07  Eric Seidel  <eric@webkit.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py

    r57173 r57253  
    407407            cmd += self._options.wrapper.split()
    408408
    409         cmd += ['arch', '-i386', port._path_to_driver(), '-']
     409        cmd += [port._path_to_driver(), '-']
    410410
    411411        if image_path:
Note: See TracChangeset for help on using the changeset viewer.