Title: [118311] trunk
- Revision
- 118311
- Author
- [email protected]
- Date
- 2012-05-23 19:38:50 -0700 (Wed, 23 May 2012)
Log Message
[EFL][DRT] Fix WebCore library path and rebaseline result
https://bugs.webkit.org/show_bug.cgi?id=86355
Patch by Kangil Han <[email protected]> on 2012-05-23
Reviewed by Dirk Pranke.
Currently EFL DRT uses wrong WebCore library path when running DRT.
Therefore, this patch adjusted the path correctly.
Tools:
* Scripts/webkitpy/layout_tests/port/efl.py:
(EflPort._path_to_webcore_library):
LayoutTests:
* platform/efl/test_expectations.txt: Added some cases to skipped list since we don't support those at this stage
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (118310 => 118311)
--- trunk/LayoutTests/ChangeLog 2012-05-24 02:34:09 UTC (rev 118310)
+++ trunk/LayoutTests/ChangeLog 2012-05-24 02:38:50 UTC (rev 118311)
@@ -1,3 +1,15 @@
+2012-05-23 Kangil Han <[email protected]>
+
+ [EFL][DRT] Fix WebCore library path and rebaseline result
+ https://bugs.webkit.org/show_bug.cgi?id=86355
+
+ Reviewed by Dirk Pranke.
+
+ Currently EFL DRT uses wrong WebCore library path when running DRT.
+ Therefore, this patch adjusted the path correctly.
+
+ * platform/efl/test_expectations.txt: Added some cases to skipped list since we don't support those at this stage
+
2012-05-23 Stephanie Lewis <[email protected]>
See https://bugs.webkit.org/show_bug.cgi?id=87208
Modified: trunk/LayoutTests/platform/efl/test_expectations.txt (118310 => 118311)
--- trunk/LayoutTests/platform/efl/test_expectations.txt 2012-05-24 02:34:09 UTC (rev 118310)
+++ trunk/LayoutTests/platform/efl/test_expectations.txt 2012-05-24 02:38:50 UTC (rev 118311)
@@ -335,12 +335,11 @@
BUGWK82294 : compositing/iframes/iframe-src-change.html = TEXT
BUGWK82294 : compositing/iframes/invisible-nested-iframe-hide.html = TEXT
BUGWK82294 : compositing/iframes/invisible-nested-iframe-show.html = TEXT
-BUGWK82294 : compositing/iframes/leave-compositing-iframe.html = TEXT
BUGWK82294 : compositing/iframes/overlapped-iframe-iframe.html = TEXT
BUGWK82294 : compositing/iframes/overlapped-iframe.html = TEXT
BUGWK82294 : compositing/iframes/overlapped-nested-iframes.html = TEXT
BUGWK82294 : compositing/iframes/page-cache-layer-tree.html = TEXT
-BUGWK82294 : compositing/iframes/resizer.html = TEXT
+BUGWK82294 : compositing/iframes/resizer.html = MISSING
BUGWK82294 : compositing/iframes/scrolling-iframe.html = TEXT
BUGWK82294 : compositing/images/clip-on-directly-composited-image.html = TEXT
BUGWK82294 : compositing/layer-creation/overflow-scroll-overlap.html = TEXT
@@ -356,8 +355,6 @@
BUGWK82294 : compositing/overflow/content-loses-scrollbars.html = TEXT
BUGWK82294 : compositing/overflow/overflow-scrollbar-layers.html = TEXT
BUGWK82294 : compositing/overflow/resize-painting.html = TEXT
-BUGWK82294 : compositing/plugins/1x1-composited-plugin.html = TEXT
-BUGWK82294 : compositing/plugins/large-to-small-composited-plugin.html = TEXT
BUGWK82294 : compositing/plugins/small-to-large-composited-plugin.html = TEXT
BUGWK82294 : compositing/rtl/rtl-absolute-overflow-scrolled.html = TEXT
BUGWK82294 : compositing/rtl/rtl-absolute-overflow.html = TEXT
@@ -381,7 +378,32 @@
BUGWK82294 : compositing/tiling/huge-layer-with-layer-children.html = TEXT
BUGWK82294 : compositing/tiling/huge-layer.html = TEXT
BUGWK82294 : compositing/video/video-poster.html = TEXT
+BUGWK82294 : compositing/backing/no-backing-for-clip-overlap.html = TEXT
+BUGWK82294 : compositing/backing/no-backing-for-clip.html = TEXT
+BUGWK82294 : compositing/backing/no-backing-for-perspective.html = TEXT
+BUGWK82294 : compositing/clip-child-by-non-stacking-ancestor.html = TEXT
+BUGWK82294 : compositing/geometry/bounds-clipped-composited-child.html = TEXT
+BUGWK82294 : compositing/geometry/fixed-position-composited-switch.html = TEXT
+BUGWK82294 : compositing/layer-creation/fixed-position-out-of-view.html = TEXT
+BUGWK82294 : compositing/layer-creation/overlap-animation.html = TEXT
+BUGWK82294 : compositing/layer-creation/overlap-transformed-and-clipped.html = TEXT
+BUGWK82294 : compositing/layer-creation/overlap-transforms.html = TEXT
+BUGWK82294 : compositing/layer-creation/stacking-context-overlap-nested.html = TEXT
+BUGWK82294 : compositing/layer-creation/stacking-context-overlap.html = TEXT
+BUGWK82294 : compositing/overflow-trumps-transform-style.html = TEXT
+BUGWK82294 : compositing/tiled-layers-hidpi.html = TEXT
+BUGWK82294 : compositing/visibility/layer-visible-content.html = TEXT
+BUGWK82294 : compositing/visibility/visibility-image-layers-dynamic.html = TEXT
+// EFL's LayoutTestController does not implement displayInvalidatedRegion
+BUGWK86727 : compositing/plugins/invalidate_rect.html = TEXT
+
+// EFL's LayoutTestController does not implement display
+BUGWK86730 : compositing/layer-creation/fixed-position-scroll.html = TEXT
+
+// EFL does not support WebGL
+BUGWK77219 : compositing/visibility/visibility-simple-webgl-layer.html = TEXT
+
BUGWK84759 : ietestcenter/css3/multicolumn/column-containing-block-001.htm = IMAGE
BUGWK84760 : ietestcenter/css3/multicolumn/column-containing-block-002.htm = IMAGE
BUGWK84761 : ietestcenter/css3/multicolumn/column-filling-001.htm = IMAGE
Modified: trunk/Tools/ChangeLog (118310 => 118311)
--- trunk/Tools/ChangeLog 2012-05-24 02:34:09 UTC (rev 118310)
+++ trunk/Tools/ChangeLog 2012-05-24 02:38:50 UTC (rev 118311)
@@ -1,3 +1,16 @@
+2012-05-23 Kangil Han <[email protected]>
+
+ [EFL][DRT] Fix WebCore library path and rebaseline result
+ https://bugs.webkit.org/show_bug.cgi?id=86355
+
+ Reviewed by Dirk Pranke.
+
+ Currently EFL DRT uses wrong WebCore library path when running DRT.
+ Therefore, this patch adjusted the path correctly.
+
+ * Scripts/webkitpy/layout_tests/port/efl.py:
+ (EflPort._path_to_webcore_library):
+
2012-05-23 Ojan Vafai <[email protected]>
add back the ability to disable flexbox
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py (118310 => 118311)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py 2012-05-24 02:34:09 UTC (rev 118310)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py 2012-05-24 02:38:50 UTC (rev 118311)
@@ -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