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

Unified Diff: chrome/browser/extensions/extension_crash_recovery_browsertest.cc

Issue 16858007: Disable ExtensionCrashRecoveryTest.ReloadIndependently on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/extension_crash_recovery_browsertest.cc
diff --git a/chrome/browser/extensions/extension_crash_recovery_browsertest.cc b/chrome/browser/extensions/extension_crash_recovery_browsertest.cc
index 3eaf9a681e26354bd5afaaeb90c37d19a574e08a..5ca5607d330eb288ce83c8c1b78b06b8d3cce2f6 100644
--- a/chrome/browser/extensions/extension_crash_recovery_browsertest.cc
+++ b/chrome/browser/extensions/extension_crash_recovery_browsertest.cc
@@ -214,7 +214,14 @@ IN_PROC_BROWSER_TEST_F(MAYBE_ExtensionCrashRecoveryTest,
GetExtensionService()->terminated_extensions()->size());
}
-IN_PROC_BROWSER_TEST_F(MAYBE_ExtensionCrashRecoveryTest, ReloadIndependently) {
+// Test is timing out on Windows http://crbug.com/174705.
+#if defined(OS_WIN)
+#define MAYBE_ReloadIndependently DISABLED_ReloadIndependently
+#else
+#define MAYBE_ReloadIndependently ReloadIndependently
+#endif // defined(OS_WIN)
+IN_PROC_BROWSER_TEST_F(MAYBE_ExtensionCrashRecoveryTest,
+ MAYBE_ReloadIndependently) {
const size_t size_before = GetExtensionService()->extensions()->size();
LoadTestExtension();
CrashExtension(first_extension_id_);
« 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