Title: [222968] trunk/Tools
Revision
222968
Author
zandober...@gmail.com
Date
2017-10-06 01:36:36 -0700 (Fri, 06 Oct 2017)

Log Message

Implement TestController::platformContext() for WPE, returning the
m_context pointer as the GTK+ port does. This fixes the crashes on
the WPE testers.

Rubber-stamped by Carlos Garcia Campos.

* WebKitTestRunner/wpe/TestControllerWPE.cpp:
(WTR::TestController::platformContext):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (222967 => 222968)


--- trunk/Tools/ChangeLog	2017-10-06 07:47:01 UTC (rev 222967)
+++ trunk/Tools/ChangeLog	2017-10-06 08:36:36 UTC (rev 222968)
@@ -1,3 +1,14 @@
+2017-10-06  Zan Dobersek  <zdober...@igalia.com>
+
+        Implement TestController::platformContext() for WPE, returning the
+        m_context pointer as the GTK+ port does. This fixes the crashes on
+        the WPE testers.
+
+        Rubber-stamped by Carlos Garcia Campos.
+
+        * WebKitTestRunner/wpe/TestControllerWPE.cpp:
+        (WTR::TestController::platformContext):
+
 2017-10-05  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK][WPE] Add API to configure and enable resource load statistics

Modified: trunk/Tools/WebKitTestRunner/wpe/TestControllerWPE.cpp (222967 => 222968)


--- trunk/Tools/WebKitTestRunner/wpe/TestControllerWPE.cpp	2017-10-06 07:47:01 UTC (rev 222967)
+++ trunk/Tools/WebKitTestRunner/wpe/TestControllerWPE.cpp	2017-10-06 08:36:36 UTC (rev 222968)
@@ -116,7 +116,7 @@
 
 WKContextRef TestController::platformContext()
 {
-    return nullptr;
+    return m_context.get();
 }
 
 const char* TestController::platformLibraryPathForTesting()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to