Title: [175776] trunk/Tools
Revision
175776
Author
carlo...@webkit.org
Date
2014-11-08 02:53:26 -0800 (Sat, 08 Nov 2014)

Log Message

[GTK] Run layout tests using the network process
https://bugs.webkit.org/show_bug.cgi?id=138428

Reviewed by Martin Robinson.

Shared secondary process is the default in the GTK+ port, but we
should run the tests using the network process to ensure
everything works with the network process. In the future, the
shared secondary process model might be a special case of multiple
processes with 1 as maximum number of processes, but always using
the network process.

* WebKitTestRunner/TestController.cpp:
(WTR::TestController::initialize):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (175775 => 175776)


--- trunk/Tools/ChangeLog	2014-11-08 10:50:04 UTC (rev 175775)
+++ trunk/Tools/ChangeLog	2014-11-08 10:53:26 UTC (rev 175776)
@@ -1,5 +1,22 @@
 2014-11-08  Carlos Garcia Campos  <cgar...@igalia.com>
 
+        [GTK] Run layout tests using the network process
+        https://bugs.webkit.org/show_bug.cgi?id=138428
+
+        Reviewed by Martin Robinson.
+
+        Shared secondary process is the default in the GTK+ port, but we
+        should run the tests using the network process to ensure
+        everything works with the network process. In the future, the
+        shared secondary process model might be a special case of multiple
+        processes with 1 as maximum number of processes, but always using
+        the network process.
+
+        * WebKitTestRunner/TestController.cpp:
+        (WTR::TestController::initialize):
+
+2014-11-08  Carlos Garcia Campos  <cgar...@igalia.com>
+
         [GTK] Allow to create a view with a related page in WTR
         https://bugs.webkit.org/show_bug.cgi?id=138501
 

Modified: trunk/Tools/WebKitTestRunner/TestController.cpp (175775 => 175776)


--- trunk/Tools/WebKitTestRunner/TestController.cpp	2014-11-08 10:50:04 UTC (rev 175775)
+++ trunk/Tools/WebKitTestRunner/TestController.cpp	2014-11-08 10:53:26 UTC (rev 175776)
@@ -332,7 +332,7 @@
     m_context = adoptWK(WKContextCreateWithConfiguration(configuration.get()));
     m_geolocationProvider = std::make_unique<GeolocationProviderMock>(m_context.get());
 
-#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080)
+#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080) || PLATFORM(GTK)
     WKContextSetUsesNetworkProcess(m_context.get(), true);
     WKContextSetProcessModel(m_context.get(), kWKProcessModelMultipleSecondaryProcesses);
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to