Title: [92887] trunk/Tools
Revision
92887
Author
[email protected]
Date
2011-08-11 16:18:23 -0700 (Thu, 11 Aug 2011)

Log Message

Initialize threading before running any tests
https://bugs.webkit.org/show_bug.cgi?id=66112

Reviewed by Adam Barth.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (92886 => 92887)


--- trunk/Tools/ChangeLog	2011-08-11 22:56:22 UTC (rev 92886)
+++ trunk/Tools/ChangeLog	2011-08-11 23:18:23 UTC (rev 92887)
@@ -1,3 +1,13 @@
+2011-08-11  Anders Carlsson  <[email protected]>
+
+        Initialize threading before running any tests
+        https://bugs.webkit.org/show_bug.cgi?id=66112
+
+        Reviewed by Adam Barth.
+
+        * TestWebKitAPI/TestsController.cpp:
+        (TestWebKitAPI::TestsController::TestsController):
+
 2011-08-11  Adam Barth  <[email protected]>
 
         Add unexpected-passes.html to TestFailures for marking tests as passing

Modified: trunk/Tools/TestWebKitAPI/TestsController.cpp (92886 => 92887)


--- trunk/Tools/TestWebKitAPI/TestsController.cpp	2011-08-11 22:56:22 UTC (rev 92886)
+++ trunk/Tools/TestWebKitAPI/TestsController.cpp	2011-08-11 23:18:23 UTC (rev 92887)
@@ -26,6 +26,7 @@
 #include "TestsController.h"
 
 #include <gtest/gtest.h>
+#include <wtf/Threading.h>
 
 namespace TestWebKitAPI {
 
@@ -37,6 +38,7 @@
 
 TestsController::TestsController()
 {
+    WTF::initializeThreading();
 }
 
 bool TestsController::run(int argc, char** argv)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to