Title: [189014] trunk/Tools
Revision
189014
Author
[email protected]
Date
2015-08-27 00:23:29 -0700 (Thu, 27 Aug 2015)

Log Message

Unreviewed, further shorten a test that times out because it's very long
running.

I've locally run these tests on repeat for 24 hours and found no genuine
failures, like deadlocks. So, the timeouts are probably because the test
machine is slow and debug is slow. We should just run this test for fewer
iterations.

* TestWebKitAPI/Tests/WTF/Lock.cpp:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (189013 => 189014)


--- trunk/Tools/ChangeLog	2015-08-27 07:16:07 UTC (rev 189013)
+++ trunk/Tools/ChangeLog	2015-08-27 07:23:29 UTC (rev 189014)
@@ -1,3 +1,16 @@
+2015-08-27  Filip Pizlo  <[email protected]>
+
+        Unreviewed, further shorten a test that times out because it's very long
+        running.
+
+        I've locally run these tests on repeat for 24 hours and found no genuine
+        failures, like deadlocks. So, the timeouts are probably because the test
+        machine is slow and debug is slow. We should just run this test for fewer
+        iterations.
+
+        * TestWebKitAPI/Tests/WTF/Lock.cpp:
+        (TestWebKitAPI::TEST):
+
 2015-08-26  Ryuan Choi  <[email protected]>
 
         Unreviewed build fix attempt on EFL

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp (189013 => 189014)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp	2015-08-27 07:16:07 UTC (rev 189013)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/Lock.cpp	2015-08-27 07:23:29 UTC (rev 189014)
@@ -149,7 +149,7 @@
 
 TEST(WTF_Lock, ManyContendedLongerSections)
 {
-    runLockTest<Lock>(10, 10, 100000, 10);
+    runLockTest<Lock>(10, 10, 100000, 1);
 }
 
 TEST(WTF_Lock, SectionAddressCollision)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to