Changeset 175690 in webkit


Ignore:
Timestamp:
Nov 6, 2014 12:47:38 AM (9 years ago)
Author:
Carlos Garcia Campos
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r175647 r175690  
     12014-11-06  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Run layout tests using the network process
     4        https://bugs.webkit.org/show_bug.cgi?id=138428
     5
     6        Reviewed by Martin Robinson.
     7
     8        Shared secondary process is the default in the GTK+ port, but we
     9        should run the tests using the network process to ensure
     10        everything works with the network process. In the future, the
     11        shared secondary process model might be a special case of multiple
     12        processes with 1 as maximum number of processes, but always using
     13        the network process.
     14
     15        * WebKitTestRunner/TestController.cpp:
     16        (WTR::TestController::initialize):
     17
    1182014-11-05  Dan Bernstein  <mitz@apple.com>
    219
  • trunk/Tools/WebKitTestRunner/TestController.cpp

    r174824 r175690  
    333333    m_geolocationProvider = std::make_unique<GeolocationProviderMock>(m_context.get());
    334334
    335 #if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080)
     335#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080) || PLATFORM(GTK)
    336336    WKContextSetUsesNetworkProcess(m_context.get(), true);
    337337    WKContextSetProcessModel(m_context.get(), kWKProcessModelMultipleSecondaryProcesses);
Note: See TracChangeset for help on using the changeset viewer.