summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/ui')
-rw-r--r--chrome/test/ui/ui_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index 62ba163..3c1f776 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -405,12 +405,16 @@ void UITest::QuitBrowser() {
browsers.push_back(browser_proxy);
}
+// This is disabled for now on linux because it causes a crash. See
+// http://crbug.com/12334
+#if !defined(OS_LINUX)
for (BrowserVector::iterator iter = browsers.begin();
iter != browsers.end(); ++iter) {
// Use ApplyAccelerator since it doesn't wait
(*iter)->ApplyAccelerator(IDC_CLOSE_WINDOW);
delete (*iter);
}
+#endif
// Now, drop the automation IPC channel so that the automation provider in
// the browser notices and drops its reference to the browser process.