Changeset 225870 in webkit


Ignore:
Timestamp:
Dec 13, 2017 1:46:24 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Update ContentFiltering.LazilyLoadPlatformFrameworks test to account for libwebrtc using VideoProcessing framework
https://bugs.webkit.org/show_bug.cgi?id=180713
<rdar://problem/36003031>

Patch by Youenn Fablet <youenn@apple.com> on 2017-12-13
Reviewed by Andy Estes.

Reenable the check for non High Sierra builds.

  • TestWebKitAPI/Tests/WebKitCocoa/ContentFiltering.mm:

(-[LazilyLoadPlatformFrameworksController expectParentalControlsLoaded:networkExtensionLoaded:]):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r225864 r225870  
     12017-12-13  Youenn Fablet  <youenn@apple.com>
     2
     3        Update ContentFiltering.LazilyLoadPlatformFrameworks test to account for libwebrtc using VideoProcessing framework
     4        https://bugs.webkit.org/show_bug.cgi?id=180713
     5        <rdar://problem/36003031>
     6
     7        Reviewed by Andy Estes.
     8
     9        Reenable the check for non High Sierra builds.
     10
     11        * TestWebKitAPI/Tests/WebKitCocoa/ContentFiltering.mm:
     12        (-[LazilyLoadPlatformFrameworksController expectParentalControlsLoaded:networkExtensionLoaded:]):
     13
    1142017-12-13  Brady Eidson  <beidson@apple.com>
    215
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentFiltering.mm

    r225803 r225870  
    365365#if HAVE(NETWORK_EXTENSION)
    366366        // FIXME: Libwebrtc is linking on some configurations to VideoProcessing framework which brings up NetworkExtension framework.
     367        // Disable this test until we find a more robust test or libwebrtc weak link VideoProcessing framework.
    367368        // https://bugs.webkit.org/show_bug.cgi?id=180713
    368         // Disable this test until we find a more robust test or libwebrtc weak link VideoProcessing framework.
    369         // EXPECT_EQ(static_cast<bool>(networkExtensionShouldBeLoaded), static_cast<bool>(networkExtensionLoaded));
     369#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101300
     370        EXPECT_EQ(static_cast<bool>(networkExtensionShouldBeLoaded), static_cast<bool>(networkExtensionLoaded));
    370371#endif
     372#endif // HAVE(NETWORK_EXTENSION)
    371373        isDone = true;
    372374    }];
Note: See TracChangeset for help on using the changeset viewer.