Title: [293798] trunk/Tools
Revision
293798
Author
jen...@apple.com
Date
2022-05-04 16:14:45 -0700 (Wed, 04 May 2022)

Log Message

[ Gardening ] REGRESSION(r293671): [ iOS ] 2 TestWebKitAPI.MediaLoading.RangeRequestSynthesis (API-Tests) are constant failures
https://bugs.webkit.org/show_bug.cgi?id=240033

Unreviewed test gardening. Disabling API-tests on iOS.

* TestWebKitAPI/Tests/WebKitCocoa/MediaLoading.mm:
(TestWebKitAPI::TEST):

Canonical link: https://commits.webkit.org/250272@main

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (293797 => 293798)


--- trunk/Tools/ChangeLog	2022-05-04 23:10:37 UTC (rev 293797)
+++ trunk/Tools/ChangeLog	2022-05-04 23:14:45 UTC (rev 293798)
@@ -1,3 +1,13 @@
+2022-05-04  Robert Jenner  <jen...@apple.com>
+
+        [ Gardening ] REGRESSION(r293671): [ iOS ] 2 TestWebKitAPI.MediaLoading.RangeRequestSynthesis (API-Tests) are constant failures
+        https://bugs.webkit.org/show_bug.cgi?id=240033
+
+        Unreviewed test gardening. Disabling API-tests on iOS.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/MediaLoading.mm:
+        (TestWebKitAPI::TEST):
+
 2022-05-04  Brent Fulgham  <bfulg...@apple.com>
 
         Remove deprecated 'JavaEnabled' feature flag and related code

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/MediaLoading.mm (293797 => 293798)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/MediaLoading.mm	2022-05-04 23:10:37 UTC (rev 293797)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/MediaLoading.mm	2022-05-04 23:14:45 UTC (rev 293798)
@@ -147,7 +147,12 @@
     EXPECT_WK_STREQ([webView _test_waitForAlert], expectedMessage);
 }
 
+// FIXME Re-enable when https://bugs.webkit.org/show_bug.cgi?id=240033 is resovled 
+#if PLATFORM(IOS)
+TEST(MediaLoading, DISABLED_RangeRequestSynthesisWithContentLength)
+#else
 TEST(MediaLoading, RangeRequestSynthesisWithContentLength)
+#endif
 {
     HTTPServer server({
         {"/"_s, { videoPlayTestHTML }},
@@ -157,7 +162,12 @@
     EXPECT_EQ(server.totalRequests(), 2u);
 }
 
+// FIXME Re-enable when https://bugs.webkit.org/show_bug.cgi?id=240033 is resovled 
+#if PLATFORM(IOS)
+TEST(MediaLoading, DISABLED_RangeRequestSynthesisWithoutContentLength)
+#else
 TEST(MediaLoading, RangeRequestSynthesisWithoutContentLength)
+#endif
 {
     size_t totalRequests { 0 };
     Function<void(Connection)> respondToRequests;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to