Changeset 178720 in webkit


Ignore:
Timestamp:
Jan 20, 2015 9:51:29 AM (9 years ago)
Author:
weinig@apple.com
Message:

Attempt to fix Mountain Lion and EFL tests.

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::initialize):
Disable Process-per-tab and network process on Mountain Lion and EFL.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r178715 r178720  
     12015-01-20  Sam Weinig  <sam@webkit.org>
     2
     3        Attempt to fix Mountain Lion and EFL tests.
     4
     5        * WebKitTestRunner/TestController.cpp:
     6        (WTR::TestController::initialize):
     7        Disable Process-per-tab and network process on Mountain Lion and EFL.
     8
    192015-01-20  Darin Adler  <darin@apple.com>
    210
  • trunk/Tools/WebKitTestRunner/TestController.cpp

    r178179 r178720  
    392392    m_geolocationProvider = std::make_unique<GeolocationProviderMock>(m_context.get());
    393393
    394 #if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080) || PLATFORM(GTK)
    395     WKContextSetUsesNetworkProcess(m_context.get(), true);
    396     WKContextSetProcessModel(m_context.get(), kWKProcessModelMultipleSecondaryProcesses);
     394#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED == 1080) || PLATFORM(EFL)
     395    WKContextSetUsesNetworkProcess(m_context.get(), false);
     396    WKContextSetProcessModel(m_context.get(), kWKProcessModelSharedSecondaryProcess);
    397397#endif
    398398
Note: See TracChangeset for help on using the changeset viewer.