Title: [137986] trunk/Tools
- Revision
- 137986
- Author
- [email protected]
- Date
- 2012-12-17 22:10:43 -0800 (Mon, 17 Dec 2012)
Log Message
Unreviewed unit test skipping.
Filed https://bugs.webkit.org/show_bug.cgi?id=105253 to re-enable them.
* TestWebKitAPI/Tests/WTF/MathExtras.cpp:
(TestWebKitAPI):
(TestWebKitAPI::TEST):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (137985 => 137986)
--- trunk/Tools/ChangeLog 2012-12-18 05:53:50 UTC (rev 137985)
+++ trunk/Tools/ChangeLog 2012-12-18 06:10:43 UTC (rev 137986)
@@ -1,3 +1,13 @@
+2012-12-17 Julien Chaffraix <[email protected]>
+
+ Unreviewed unit test skipping.
+
+ Filed https://bugs.webkit.org/show_bug.cgi?id=105253 to re-enable them.
+
+ * TestWebKitAPI/Tests/WTF/MathExtras.cpp:
+ (TestWebKitAPI):
+ (TestWebKitAPI::TEST):
+
2012-12-17 Dean Jackson <[email protected]>
Unreviewed. Add Silvia Pfeiffer to contributor list.
Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp (137985 => 137986)
--- trunk/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp 2012-12-18 05:53:50 UTC (rev 137985)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp 2012-12-18 06:10:43 UTC (rev 137986)
@@ -87,7 +87,8 @@
EXPECT_EQ(clampTo<int>(underflowInt), minInt);
}
-TEST(WTF, clampToIntegerFloat)
+// https://bugs.webkit.org/show_bug.cgi?id=105253
+TEST(WTF, DISABLED_clampToIntegerFloat)
{
// This test is inaccurate as floats will round the min / max integer
// due to the narrow mantissa. However it will properly checks within
@@ -144,7 +145,8 @@
EXPECT_EQ(clampToFloat(-std::numeric_limits<float>::infinity()), minFloat);
}
-TEST(WTF, clampToUnsigned)
+// https://bugs.webkit.org/show_bug.cgi?id=105253
+TEST(WTF, DISABLED_clampToUnsigned)
{
unsigned long maxUnsigned = std::numeric_limits<unsigned>::max();
unsigned long overflowUnsigned = maxUnsigned + 1;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes