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

Unified Diff: chrome/browser/extensions/api/tabs/tabs_test.cc

Issue 1908213003: Disable ExtensionTabsTest.GetWindow on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/browser/extensions/api/tabs/tabs_test.cc
diff --git a/chrome/browser/extensions/api/tabs/tabs_test.cc b/chrome/browser/extensions/api/tabs/tabs_test.cc
index e10c1e3f6990c79141a20e85a5e12369ce860985..4de45b0b11723a1dbeb1d053fe890798a886c8da 100644
--- a/chrome/browser/extensions/api/tabs/tabs_test.cc
+++ b/chrome/browser/extensions/api/tabs/tabs_test.cc
@@ -100,7 +100,13 @@ int GetWindowId(base::DictionaryValue* window) {
} // namespace
-IN_PROC_BROWSER_TEST_F(ExtensionTabsTest, GetWindow) {
+#if defined(OS_WIN)
+// Crashes under Dr. Memory, see https://crbug.com/605880.
+#define MAYBE_GetWindow DISABLED_GetWindow
+#else
+#define MAYBE_GetWindow GetWindow
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionTabsTest, MAYBE_GetWindow) {
int window_id = ExtensionTabUtil::GetWindowId(browser());
// Invalid window ID error.
« 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