Title: [281421] trunk/JSTests
Revision
281421
Author
ysuz...@apple.com
Date
2021-08-22 15:09:52 -0700 (Sun, 22 Aug 2021)

Log Message

Unreviewed, speculative fix for old ICU
https://bugs.webkit.org/show_bug.cgi?id=229385

* stress/intl-locale-info.js:
(shouldBe):

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (281420 => 281421)


--- trunk/JSTests/ChangeLog	2021-08-22 21:26:45 UTC (rev 281420)
+++ trunk/JSTests/ChangeLog	2021-08-22 22:09:52 UTC (rev 281421)
@@ -1,3 +1,11 @@
+2021-08-22  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, speculative fix for old ICU
+        https://bugs.webkit.org/show_bug.cgi?id=229385
+
+        * stress/intl-locale-info.js:
+        (shouldBe):
+
 2021-08-21  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] Remove Intl runtime feature flags for already shipped ones

Modified: trunk/JSTests/stress/intl-locale-info.js (281420 => 281421)


--- trunk/JSTests/stress/intl-locale-info.js	2021-08-22 21:26:45 UTC (rev 281420)
+++ trunk/JSTests/stress/intl-locale-info.js	2021-08-22 22:09:52 UTC (rev 281421)
@@ -34,7 +34,8 @@
 }
 {
     let locale = new Intl.Locale("ar-SA")
-    shouldBe(JSON.stringify(locale.calendars), `["islamic-umalqura","islamic-rgsa","islamic","gregory"]`);
+    let calendars = JSON.stringify(locale.calendars);
+    shouldBe(calendars === `["islamic-umalqura","islamic-rgsa","islamic","gregory"]` || calendars === `["islamic-umalqura","gregory","islamic","islamic-rgsa"]`, true);
     shouldBe(JSON.stringify(locale.collations), `["compat","emoji","eor"]`);
     shouldBe(JSON.stringify(locale.hourCycles), `["h12"]`);
     shouldBe(JSON.stringify(locale.numberingSystems), `["arab"]`);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to