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

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

Issue 10073034: On virtual 10.5 MultisamplingDisabled also fails. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/gpu/gpu_feature_browsertest.cc
===================================================================
--- chrome/test/gpu/gpu_feature_browsertest.cc (revision 132343)
+++ chrome/test/gpu/gpu_feature_browsertest.cc (working copy)
@@ -308,6 +308,16 @@
};
IN_PROC_BROWSER_TEST_F(WebGLMultisamplingTest, MultisamplingDisabled) {
+#if defined(OS_MACOSX)
+ // Multisampling fails on virtualized mac os.
+ GPUTestBotConfig test_bot;
+ test_bot.LoadCurrentConfig(NULL);
+
+ const std::vector<uint32>& gpu_vendor = test_bot.gpu_vendor();
+ if (gpu_vendor.size() == 1 && gpu_vendor[0] == 0x15AD)
+ return;
+#endif
+
const FilePath url(FILE_PATH_LITERAL("feature_multisampling.html"));
RunTest(url, "\"FALSE\"", true);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698