Title: [121937] trunk/Source/WebKit/chromium
- Revision
- 121937
- Author
- [email protected]
- Date
- 2012-07-05 20:33:47 -0700 (Thu, 05 Jul 2012)
Log Message
Unreviewed Chromium gardening - Disable WebAnimationTest for Linux and Windows.
https://bugs.webkit.org/show_bug.cgi?id=90651
* tests/WebAnimationTest.cpp:
(WebKit):
(WebKit::TEST):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (121936 => 121937)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-07-06 02:50:57 UTC (rev 121936)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-07-06 03:33:47 UTC (rev 121937)
@@ -1,3 +1,12 @@
+2012-07-05 Yoshifumi Inoue <[email protected]>
+
+ Unreviewed Chromium gardening - Disable WebAnimationTest for Linux and Windows.
+ https://bugs.webkit.org/show_bug.cgi?id=90651
+
+ * tests/WebAnimationTest.cpp:
+ (WebKit):
+ (WebKit::TEST):
+
2012-07-05 Ian Vollick <[email protected]>
[chromium] Create a WebKit::Web* wrapper for the cc animation classes
Modified: trunk/Source/WebKit/chromium/tests/WebAnimationTest.cpp (121936 => 121937)
--- trunk/Source/WebKit/chromium/tests/WebAnimationTest.cpp 2012-07-06 02:50:57 UTC (rev 121936)
+++ trunk/Source/WebKit/chromium/tests/WebAnimationTest.cpp 2012-07-06 03:33:47 UTC (rev 121937)
@@ -35,7 +35,16 @@
namespace {
-TEST(WebAnimationTest, DefaultSettings)
+// Linux/Win bots failed on this test.
+// https://bugs.webkit.org/show_bug.cgi?id=90651
+#if OS(WINDOWS)
+#define MAYBE_DefaultSettings DISABLED_DefaultSettings
+#elif OS(LINUX)
+#define MAYBE_DefaultSettings DISABLED_DefaultSettings
+#else
+#define MAYBE_DefaultSettings DefaultSettings
+#endif
+TEST(WebAnimationTest, MAYBE_DefaultSettings)
{
WebFloatAnimationCurve curve;
WebAnimation animation(curve, WebAnimation::WebAnimationOpacity);
@@ -47,7 +56,16 @@
EXPECT_FALSE(animation.alternatesDirection());
}
-TEST(WebAnimationTest, ModifiedSettings)
+// Linux/Win bots failed on this test.
+// https://bugs.webkit.org/show_bug.cgi?id=90651
+#if OS(WINDOWS)
+#define MAYBE_ModifiedSettings DISABLED_ModifiedSettings
+#elif OS(LINUX)
+#define MAYBE_ModifiedSettings DISABLED_ModifiedSettings
+#else
+#define MAYBE_ModifiedSettings ModifiedSettings
+#endif
+TEST(WebAnimationTest, MAYBE_ModifiedSettings)
{
WebFloatAnimationCurve curve;
WebAnimation animation(curve, WebAnimation::WebAnimationOpacity);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes