Title: [286376] trunk/Tools
Revision
286376
Author
ryanhad...@apple.com
Date
2021-12-01 11:36:54 -0800 (Wed, 01 Dec 2021)

Log Message

[ iOS ] TestWebKitAPI.ApplicationManifest.IconCoding is a constant failure
https://bugs.webkit.org/show_bug.cgi?id=233715

Reviewed by Tim Horton.

* TestWebKitAPI/Tests/WebKitCocoa/ApplicationManifest.mm:
(TestWebKitAPI::TEST): Remove a fragile assertion about the size of NSKeyedArchive that is causing the test to fail on iOS.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (286375 => 286376)


--- trunk/Tools/ChangeLog	2021-12-01 19:28:46 UTC (rev 286375)
+++ trunk/Tools/ChangeLog	2021-12-01 19:36:54 UTC (rev 286376)
@@ -1,3 +1,13 @@
+2021-12-01  Ryan Haddad  <ryanhad...@apple.com>
+
+        [ iOS ] TestWebKitAPI.ApplicationManifest.IconCoding is a constant failure
+        https://bugs.webkit.org/show_bug.cgi?id=233715
+
+        Reviewed by Tim Horton.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/ApplicationManifest.mm:
+        (TestWebKitAPI::TEST): Remove a fragile assertion about the size of NSKeyedArchive that is causing the test to fail on iOS.
+
 2021-12-01  W.D. Xiong  <w...@apple.com>
 
         [macOS] run-benchmark should take diagnostic screenshots upon test timeout

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ApplicationManifest.mm (286375 => 286376)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ApplicationManifest.mm	2021-12-01 19:28:46 UTC (rev 286375)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ApplicationManifest.mm	2021-12-01 19:36:54 UTC (rev 286376)
@@ -375,7 +375,6 @@
 
     NSError *error = nil;
     NSData *archiveData = [NSKeyedArchiver archivedDataWithRootObject:manifestIcon.get() requiringSecureCoding:YES error:&error];
-    EXPECT_EQ(archiveData.length, 602ull);
     EXPECT_NULL(error);
 
     _WKApplicationManifestIcon *decodedIcon = [NSKeyedUnarchiver unarchivedObjectOfClass:[_WKApplicationManifestIcon class] fromData:archiveData error:&error];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to