Title: [92889] trunk/Tools
Revision
92889
Author
[email protected]
Date
2011-08-11 16:20:57 -0700 (Thu, 11 Aug 2011)

Log Message

Add a FIXME.

* TestWebKitAPI/TestsController.cpp:
(TestWebKitAPI::TestsController::TestsController):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (92888 => 92889)


--- trunk/Tools/ChangeLog	2011-08-11 23:19:43 UTC (rev 92888)
+++ trunk/Tools/ChangeLog	2011-08-11 23:20:57 UTC (rev 92889)
@@ -1,5 +1,12 @@
 2011-08-11  Anders Carlsson  <[email protected]>
 
+        Add a FIXME.
+
+        * TestWebKitAPI/TestsController.cpp:
+        (TestWebKitAPI::TestsController::TestsController):
+
+2011-08-11  Anders Carlsson  <[email protected]>
+
         Initialize threading before running any tests
         https://bugs.webkit.org/show_bug.cgi?id=66112
 

Modified: trunk/Tools/TestWebKitAPI/TestsController.cpp (92888 => 92889)


--- trunk/Tools/TestWebKitAPI/TestsController.cpp	2011-08-11 23:19:43 UTC (rev 92888)
+++ trunk/Tools/TestWebKitAPI/TestsController.cpp	2011-08-11 23:20:57 UTC (rev 92889)
@@ -38,6 +38,10 @@
 
 TestsController::TestsController()
 {
+    // FIXME: We currently initialize threading here to avoid assertion failures from
+    // the ThreadRestrictionVerifier - https://bugs.webkit.org/show_bug.cgi?id=66112
+    // We should make sure that all objects tested either initialize threading or inherit from
+    // ThreadSafeRefCounted so that we don't have to initialize threading at all here.
     WTF::initializeThreading();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to