Title: [261568] trunk/Tools
Revision
261568
Author
[email protected]
Date
2020-05-12 12:07:58 -0700 (Tue, 12 May 2020)

Log Message

[iOS] TestWTF.WTF_Lock.ContendedShortSection is consistently timing out on debug
https://bugs.webkit.org/show_bug.cgi?id=211650

Unreviewed test gardening.

* TestWebKitAPI/Tests/WTF/Lock.cpp: Skip the test for iOS Debug queues.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (261567 => 261568)


--- trunk/Tools/ChangeLog	2020-05-12 18:48:02 UTC (rev 261567)
+++ trunk/Tools/ChangeLog	2020-05-12 19:07:58 UTC (rev 261568)
@@ -1,3 +1,12 @@
+2020-05-12  Ryan Haddad  <[email protected]>
+
+        [iOS] TestWTF.WTF_Lock.ContendedShortSection is consistently timing out on debug
+        https://bugs.webkit.org/show_bug.cgi?id=211650
+
+        Unreviewed test gardening.
+
+        * TestWebKitAPI/Tests/WTF/Lock.cpp: Skip the test for iOS Debug queues.
+
 2020-05-12  Philippe Normand  <[email protected]>
 
         [FlatPak SDK] Some packages in the SDK have missing debug symbols

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp (261567 => 261568)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp	2020-05-12 18:48:02 UTC (rev 261567)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp	2020-05-12 19:07:58 UTC (rev 261568)
@@ -143,6 +143,8 @@
     runLockTest<Lock>(1, 1, 10000, 1000);
 }
 
+// FIXME: Re-enable this test for iOS Debug once webkit.org/b/211650 is resolved
+#if PLATFORM(IOS) && !defined(NDEBUG)
 TEST(WTF_Lock, ContendedShortSection)
 {
     if (skipSlow())
@@ -149,6 +151,7 @@
         return;
     runLockTest<Lock>(1, 10, 1, 10000000);
 }
+#endif
 
 TEST(WTF_Lock, ContendedLongSection)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to