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

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

Issue 22648006: Revert 216780 "Clean up compositor initialization/destruction." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 4 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
Index: trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc
===================================================================
--- trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc (revision 216906)
+++ trunk/src/chrome/test/gpu/gpu_feature_browsertest.cc (working copy)
@@ -14,6 +14,7 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/in_process_browser_test.h"
+#include "chrome/test/base/test_launcher_utils.h"
#include "chrome/test/base/tracing.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/gpu_data_manager.h"
@@ -23,7 +24,8 @@
#include "gpu/config/gpu_info.h"
#include "gpu/config/gpu_test_config.h"
#include "net/base/net_util.h"
-#include "ui/gl/gl_implementation.h"
+#include "ui/compositor/compositor_setup.h"
+#include "ui/gl/gl_switches.h"
#if defined(OS_MACOSX)
#include "ui/gl/io_surface_support_mac.h"
@@ -47,15 +49,8 @@
class GpuFeatureTest : public InProcessBrowserTest {
public:
- GpuFeatureTest() : category_patterns_("test_gpu") {}
+ GpuFeatureTest() : category_patterns_("test_gpu"), gpu_enabled_(false) {}
- virtual void SetUp() OVERRIDE {
- // We expect to use real GL contexts for these tests.
- UseRealGLContexts();
-
- InProcessBrowserTest::SetUp();
- }
-
virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
base::FilePath test_dir;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_dir));
@@ -63,7 +58,18 @@
}
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ // Do not use mesa if real GPU is required.
+ if (!command_line->HasSwitch(switches::kUseGpuInTests)) {
+#if !defined(OS_MACOSX)
+ CHECK(test_launcher_utils::OverrideGLImplementation(
+ command_line, gfx::kGLImplementationOSMesaName)) <<
+ "kUseGL must not be set by test framework code!";
+#endif
+ } else {
+ gpu_enabled_ = true;
+ }
command_line->AppendSwitch(switches::kDisablePopupBlocking);
+ ui::DisableTestCompositor();
command_line->AppendSwitchASCII(switches::kWindowSize, "400,300");
}
@@ -79,7 +85,7 @@
bool new_tab) {
#if defined(OS_LINUX) && !defined(NDEBUG)
// Bypass tests on GPU Linux Debug bots.
- if (gfx::GetGLImplementation() != gfx::kGLImplementationOSMesaGL)
+ if (gpu_enabled_)
return;
#endif
@@ -111,7 +117,7 @@
bool event_expected = false) {
#if defined(OS_LINUX) && !defined(NDEBUG)
// Bypass tests on GPU Linux Debug bots.
- if (gfx::GetGLImplementation() != gfx::kGLImplementationOSMesaGL)
+ if (gpu_enabled_)
return;
#endif
#if defined(OS_MACOSX)
@@ -167,6 +173,7 @@
scoped_ptr<TraceAnalyzer> analyzer_;
std::string category_patterns_;
std::string trace_events_json_;
+ bool gpu_enabled_;
};
#if defined(OS_WIN) || defined(ADDRESS_SANITIZER)
@@ -301,7 +308,9 @@
gpu::GPU_FEATURE_TYPE_MULTISAMPLING));
// Multisampling is not supported if running on top of osmesa.
- if (gfx::GetGLImplementation() != gfx::kGLImplementationOSMesaGL)
+ std::string use_gl = CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
+ switches::kUseGL);
+ if (use_gl == gfx::kGLImplementationOSMesaName)
return;
// Linux Intel uses mesa driver, where multisampling is not supported.
@@ -549,4 +558,4 @@
}
#endif
-} // namespace
+} // namespace anonymous
« no previous file with comments | « trunk/src/chrome/test/base/view_event_test_base.cc ('k') | trunk/src/chrome/test/gpu/webgl_infobar_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698