Changeset 112948 in webkit


Ignore:
Timestamp:
Apr 2, 2012, 3:05:59 PM (13 years ago)
Author:
Stephanie Lewis
Message:

2012-04-02 Stephanie Lewis <Stephanie Lewis>

run-webkit-tests --root fails if /usr/local/lib/libWebCoreTestSupport.dylib is not installed.
https://bugs.webkit.org/show_bug.cgi?id=82552

Reviewed by Dirk Pranke.

Use DYLD_LIBRARY_PATH so we pick up the libWebCoreTestSupport.dylib located in the root.

  • Scripts/webkitpy/layout_tests/port/webkit.py: (WebKitDriver._start):
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r112944 r112948  
     12012-04-02  Stephanie Lewis  <slewis@apple.com>
     2
     3        run-webkit-tests --root fails if /usr/local/lib/libWebCoreTestSupport.dylib is not installed.
     4        https://bugs.webkit.org/show_bug.cgi?id=82552
     5
     6        Reviewed by Dirk Pranke.
     7
     8        Use DYLD_LIBRARY_PATH so we pick up the libWebCoreTestSupport.dylib located in the root.
     9
     10        * Scripts/webkitpy/layout_tests/port/webkit.py:
     11        (WebKitDriver._start):
     12
    1132012-04-02  Dirk Pranke  <dpranke@chromium.org>
    214
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py

    r112739 r112948  
    483483        environment['DYLD_LIBRARY_PATH'] = self._port._build_path()
    484484        environment['DYLD_FRAMEWORK_PATH'] = self._port._build_path()
     485        environment['DYLD_LIBRARY_PATH'] = self._port._build_path()
    485486        # FIXME: We're assuming that WebKitTestRunner checks this DumpRenderTree-named environment variable.
    486487        environment['DUMPRENDERTREE_TEMP'] = str(self._driver_tempdir)
Note: See TracChangeset for help on using the changeset viewer.