Title: [112948] trunk/Tools
Revision
112948
Author
[email protected]
Date
2012-04-02 15:05:59 -0700 (Mon, 02 Apr 2012)

Log Message

2012-04-02  Stephanie Lewis  <[email protected]>

        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):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (112947 => 112948)


--- trunk/Tools/ChangeLog	2012-04-02 21:53:12 UTC (rev 112947)
+++ trunk/Tools/ChangeLog	2012-04-02 22:05:59 UTC (rev 112948)
@@ -1,3 +1,15 @@
+2012-04-02  Stephanie Lewis  <[email protected]>
+
+        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):
+
 2012-04-02  Dirk Pranke  <[email protected]>
 
         NRWT is not printing out the builder it's uploading JSON files for

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py (112947 => 112948)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2012-04-02 21:53:12 UTC (rev 112947)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2012-04-02 22:05:59 UTC (rev 112948)
@@ -482,6 +482,7 @@
         environment = self._port.setup_environ_for_server(server_name)
         environment['DYLD_LIBRARY_PATH'] = self._port._build_path()
         environment['DYLD_FRAMEWORK_PATH'] = self._port._build_path()
+        environment['DYLD_LIBRARY_PATH'] = self._port._build_path()
         # FIXME: We're assuming that WebKitTestRunner checks this DumpRenderTree-named environment variable.
         environment['DUMPRENDERTREE_TEMP'] = str(self._driver_tempdir)
         environment['LOCAL_RESOURCE_ROOT'] = self._port.layout_tests_dir()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to