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

Changeset 280713 in webkit


Ignore:
Timestamp:
Aug 5, 2021, 6:01:32 PM (5 years ago)
Author:
Ryan Haddad
Message:

REGRESSION (r279855): TestWebKitAPI.AppleLanguagesTest.UpdateAppleLanguages is failing
https://bugs.webkit.org/show_bug.cgi?id=228309

Unreviewed test gardening.

This test has been skipped on Apple Silicon because of timeouts, and
now it is a flaky failure on Intel machines. Disable it outright for
the time being.

  • TestWebKitAPI/Tests/WebKit/OverrideAppleLanguagesPreference.mm:

(TEST_F):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r280706 r280713  
    1111
    1212        * TestWebKitAPI/Tests/mac/load-web-archive-1.html:
     13
     142021-08-05  Ryan Haddad  <ryanhaddad@apple.com>
     15
     16        REGRESSION (r279855): TestWebKitAPI.AppleLanguagesTest.UpdateAppleLanguages is failing
     17        https://bugs.webkit.org/show_bug.cgi?id=228309
     18
     19        Unreviewed test gardening.
     20
     21        This test has been skipped on Apple Silicon because of timeouts, and
     22        now it is a flaky failure on Intel machines. Disable it outright for
     23        the time be ing.
     24
     25        * TestWebKitAPI/Tests/WebKit/OverrideAppleLanguagesPreference.mm:
     26        (TEST_F):
    1327
    14282021-08-05  Zan Dobersek  <zdobersek@igalia.com>
  • trunk/Tools/TestWebKitAPI/Tests/WebKit/OverrideAppleLanguagesPreference.mm

    r277267 r280713  
    5959// On older macOSes, CFPREFS_DIRECT_MODE is disabled and the WebProcess does not see the updated AppleLanguages
    6060// after the AppleLanguagePreferencesChangedNotification notification.
    61 // FIXME: This test is currently disabled on Apple Silicon because it times out there (https://bugs.webkit.org/show_bug.cgi?id=222619).
    62 #if PLATFORM(MAC) && ENABLE(CFPREFS_DIRECT_MODE) && CPU(X86_64)
     61#if PLATFORM(MAC) && ENABLE(CFPREFS_DIRECT_MODE)
    6362class AppleLanguagesTest : public testing::Test {
    6463public:
     
    110109}
    111110
    112 TEST_F(AppleLanguagesTest, UpdateAppleLanguages)
     111// FIXME: This test times out on Apple Silicon (webkit.org/b/222619) and is a flaky failure on Intel (webkit.org/b/228309)
     112TEST_F(AppleLanguagesTest, DISABLED_UpdateAppleLanguages)
    113113{
    114114    preferenceObserverSharedInstanceCalled = false;
Note: See TracChangeset for help on using the changeset viewer.