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

Changeset 283468 in webkit


Ignore:
Timestamp:
Oct 3, 2021, 10:10:45 AM (5 years ago)
Author:
mmaxfield@apple.com
Message:

Some layout tests with Japanese glyphs fail if Japanese is included in the system "Preferred Languages" settings
https://bugs.webkit.org/show_bug.cgi?id=231112

Reviewed by Simon Fraser.

Simply set the default locale to en-US. Tests can still override it.

  • WebKitTestRunner/TestOptions.cpp:

(WTR::TestOptions::defaults):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r283462 r283468  
     12021-10-03  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Some layout tests with Japanese glyphs fail if Japanese is included in the system "Preferred Languages" settings
     4        https://bugs.webkit.org/show_bug.cgi?id=231112
     5
     6        Reviewed by Simon Fraser.
     7
     8        Simply set the default locale to en-US. Tests can still override it.
     9
     10        * WebKitTestRunner/TestOptions.cpp:
     11        (WTR::TestOptions::defaults):
     12
    1132021-10-02  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Tools/WebKitTestRunner/TestOptions.cpp

    r282643 r283468  
    180180        };
    181181        features.stringVectorTestRunnerFeatures = {
    182             { "language", { } },
     182            { "language", { "en-US" } },
    183183        };
    184184    }
Note: See TracChangeset for help on using the changeset viewer.