Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc

Issue 130693002: Revert 243714 "Update GPU feature tests to expect no GPU on Wind..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | trunk/src/gpu/config/gpu_test_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc
===================================================================
--- trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc (revision 243748)
+++ trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc (working copy)
@@ -295,6 +295,10 @@
RunEventTest(url, kWebGLCreationEvent, false);
}
+#if (defined(GOOGLE_CHROME_BUILD) && defined(OS_MACOSX)) || defined(OS_WIN)
+// http://crbug.com/314745 and http://crbug.com/332341
+#define MultisamplingAllowed DISABLED_MultisamplingAllowed
+#endif
IN_PROC_BROWSER_TEST_F(GpuFeatureTest, MultisamplingAllowed) {
bool expect_blacklisted = false;
if (gpu::GPUTestBotConfig::GpuBlacklistedOnBot())
@@ -363,7 +367,13 @@
RunTest(url, "\"FALSE\"", true);
}
-IN_PROC_BROWSER_TEST_F(GpuFeatureTest, Canvas2DAllowed) {
+// http://crbug.com/332341
+#if defined(OS_WIN)
+#define MAYBE_Canvas2DAllowed DISABLED_Canvas2DAllowed
+#else
+#define MAYBE_Canvas2DAllowed Canvas2DAllowed
+#endif
+IN_PROC_BROWSER_TEST_F(GpuFeatureTest, MAYBE_Canvas2DAllowed) {
// Accelerated canvas 2D is not supported on XP.
if (gpu::GPUTestBotConfig::CurrentConfigMatches("XP"))
return;
@@ -438,8 +448,16 @@
RunEventTest(url, kAcceleratedCanvasCreationEvent, false);
}
+// Fails on XP and Vista bots. http://crbug.com/332341
+#if defined(OS_WIN)
+#define MAYBE_CanOpenPopupAndRenderWithWebGLCanvas \
+ DISABLED_CanOpenPopupAndRenderWithWebGLCanvas
+#else
+#define MAYBE_CanOpenPopupAndRenderWithWebGLCanvas \
+ CanOpenPopupAndRenderWithWebGLCanvas
+#endif
IN_PROC_BROWSER_TEST_F(GpuFeatureTest,
- CanOpenPopupAndRenderWithWebGLCanvas) {
+ MAYBE_CanOpenPopupAndRenderWithWebGLCanvas) {
if (gpu::GPUTestBotConfig::GpuBlacklistedOnBot())
return;
« no previous file with comments | « no previous file | trunk/src/gpu/config/gpu_test_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698