Title: [102818] trunk/Tools
Revision
102818
Author
[email protected]
Date
2011-12-14 13:27:56 -0800 (Wed, 14 Dec 2011)

Log Message

Fix the Windows build.

Disable some of the tests for now.

* TestWebKitAPI/Tests/WTF/Functional.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (102817 => 102818)


--- trunk/Tools/ChangeLog	2011-12-14 21:25:01 UTC (rev 102817)
+++ trunk/Tools/ChangeLog	2011-12-14 21:27:56 UTC (rev 102818)
@@ -1,5 +1,13 @@
 2011-12-14  Anders Carlsson  <[email protected]>
 
+        Fix the Windows build.
+
+        Disable some of the tests for now.
+
+        * TestWebKitAPI/Tests/WTF/Functional.cpp:
+
+2011-12-14  Anders Carlsson  <[email protected]>
+
         bind should handle member functions
         https://bugs.webkit.org/show_bug.cgi?id=74529
 

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp (102817 => 102818)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp	2011-12-14 21:25:01 UTC (rev 102817)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp	2011-12-14 21:27:56 UTC (rev 102818)
@@ -28,6 +28,10 @@
 
 namespace TestWebKitAPI {
 
+// FIXME: Once we add FunctionWrapper specializations for __cdecl function types,
+// we can enable these tests on Windows.
+#if !COMPILER(MSVC)
+
 static int returnFortyTwo()
 {
     return 42;
@@ -81,6 +85,8 @@
     ASSERT_EQ(2, subtractTwoFromFourFunction());
 }
 
+#endif // !COMPILER(MSVC)
+
 class A {
 public:
     explicit A(int i)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to