⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 276176 in webkit


Ignore:
Timestamp:
Apr 16, 2021, 3:50:31 PM (5 years ago)
Author:
Kate Cheney
Message:

Disable app-bound request API tests on specific OS versions
https://bugs.webkit.org/show_bug.cgi?id=223692
<rdar://problem/75787288>

Reviewed by Brent Fulgham.

Source/WTF:

  • wtf/PlatformEnableCocoa.h:

Tools:

These test rely on internal additions only available on certain OS
versions. We should disable them on other versions.

  • TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r276164 r276176  
     12021-04-16  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        Disable app-bound request API tests on specific OS versions
     4        https://bugs.webkit.org/show_bug.cgi?id=223692
     5        <rdar://problem/75787288>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        * wtf/PlatformEnableCocoa.h:
     10
    1112021-04-16  Alex Christensen  <achristensen@webkit.org>
    212
  • trunk/Source/WTF/wtf/PlatformEnableCocoa.h

    r275929 r276176  
    658658#define ENABLE_NOTIFY_FILTERING 1
    659659#endif
     660
     661#if !defined(ENABLE_APP_BOUND_REQUESTS) \
     662    && ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000) \
     663    || ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000)))
     664#define ENABLE_APP_BOUND_REQUESTS 1
     665#endif
  • trunk/Tools/ChangeLog

    r276164 r276176  
     12021-04-16  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        Disable app-bound request API tests on specific OS versions
     4        https://bugs.webkit.org/show_bug.cgi?id=223692
     5        <rdar://problem/75787288>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        These test rely on internal additions only available on certain OS
     10        versions. We should disable them on other versions.
     11
     12        * TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm:
     13
    1142021-04-16  Alex Christensen  <achristensen@webkit.org>
    215
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm

    r275952 r276176  
    14211421#endif // ENABLE(APP_BOUND_DOMAINS)
    14221422
    1423 #if USE(APPLE_INTERNAL_SDK)
     1423#if USE(APPLE_INTERNAL_SDK) && ENABLE(APP_BOUND_REQUESTS)
    14241424TEST(InAppBrowserPrivacy, AppBoundRequest)
    14251425{
Note: See TracChangeset for help on using the changeset viewer.