Title: [293802] trunk/Tools
Revision
293802
Author
cdu...@apple.com
Date
2022-05-04 16:27:43 -0700 (Wed, 04 May 2022)

Log Message

REGRESSION(r293703):[ BigSur+ iOS ] TestWTF.WTF_URLExtras.URLExtras_ParsingError (API-Test) is a constant failure
https://bugs.webkit.org/show_bug.cgi?id=240049
<rdar://problem/92704160>

Unreviewed follow-up to r293761 because I dropped an item the std::array but failed to update its size.


* TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (293801 => 293802)


--- trunk/Tools/ChangeLog	2022-05-04 23:25:59 UTC (rev 293801)
+++ trunk/Tools/ChangeLog	2022-05-04 23:27:43 UTC (rev 293802)
@@ -1,3 +1,14 @@
+2022-05-04  Chris Dumez  <cdu...@apple.com>
+
+        REGRESSION(r293703):[ BigSur+ iOS ] TestWTF.WTF_URLExtras.URLExtras_ParsingError (API-Test) is a constant failure
+        https://bugs.webkit.org/show_bug.cgi?id=240049
+        <rdar://problem/92704160>
+
+        Unreviewed follow-up to r293761 because I dropped an item the std::array but failed to update its size.
+
+        * TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm:
+        (TestWebKitAPI::TEST):
+
 2022-05-04  Robert Jenner  <jen...@apple.com>
 
         [ Gardening ] REGRESSION(r293671): [ iOS ] 2 TestWebKitAPI.MediaLoading.RangeRequestSynthesis (API-Tests) are constant failures

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm (293801 => 293802)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm	2022-05-04 23:25:59 UTC (rev 293801)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm	2022-05-04 23:27:43 UTC (rev 293802)
@@ -233,7 +233,7 @@
     WTF::URL url2 { utf16String(u"http://\u2267\u222E\uFE63\u0661\u06F1") };
     EXPECT_STREQ([[url2 absoluteString] UTF8String], "http://%E2%89%A7%E2%88%AE%EF%B9%A3%D9%A1%DB%B1");
 
-    std::array<UChar, 3> utf16 { 0xC2, 0xB6 };
+    std::array<UChar, 2> utf16 { 0xC2, 0xB6 };
     WTF::URL url3 { String(utf16.data(), utf16.size()) };
     EXPECT_FALSE(url3.string().is8Bit());
     EXPECT_FALSE(url3.isValid());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to