Title: [116981] trunk/Tools
Revision
116981
Author
[email protected]
Date
2012-05-14 12:14:03 -0700 (Mon, 14 May 2012)

Log Message

[EFL][DRT] Fix WebCore library path
https://bugs.webkit.org/show_bug.cgi?id=86355

Patch by Kangil Han <[email protected]> on 2012-05-14
Reviewed by Dirk Pranke.

Currently EFL DRT uses wrong WebCore library path when running DRT.
This patch simply adjusted it.

* Scripts/webkitpy/layout_tests/port/efl.py:
(EflPort._path_to_webcore_library):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (116980 => 116981)


--- trunk/Tools/ChangeLog	2012-05-14 19:12:24 UTC (rev 116980)
+++ trunk/Tools/ChangeLog	2012-05-14 19:14:03 UTC (rev 116981)
@@ -1,3 +1,16 @@
+2012-05-14  Kangil Han  <[email protected]>
+
+        [EFL][DRT] Fix WebCore library path
+        https://bugs.webkit.org/show_bug.cgi?id=86355
+
+        Reviewed by Dirk Pranke.
+
+        Currently EFL DRT uses wrong WebCore library path when running DRT.
+        This patch simply adjusted it.
+
+        * Scripts/webkitpy/layout_tests/port/efl.py:
+        (EflPort._path_to_webcore_library):
+
 2012-05-14  Wei James  <[email protected]>
 
         [Chromium] ImageDiff should be build for host on Android

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py (116980 => 116981)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py	2012-05-14 19:12:24 UTC (rev 116980)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py	2012-05-14 19:14:03 UTC (rev 116981)
@@ -68,8 +68,8 @@
         return [self._jhbuild_wrapper_path] + super(EflPort, self)._image_diff_command(*args, **kwargs)
 
     def _path_to_webcore_library(self):
-        static_path = self._build_path('WebCore', 'libwebcore_efl.a')
-        dyn_path = self._build_path('WebCore', 'libwebcore_efl.so')
+        static_path = self._build_path('lib', 'libwebcore_efl.a')
+        dyn_path = self._build_path('lib', 'libwebcore_efl.so')
         return static_path if self._filesystem.exists(static_path) else dyn_path
 
     def show_results_html_file(self, results_filename):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to