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

Unified Diff: chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc

Issue 2032493002: Disable ChromeRenderProcessHostBackgroundingTest.ProcessPriorityAfterStoppedAudio on Windows due to… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/renderer_host/render_process_host_chrome_browsertest.cc
diff --git a/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc b/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc
index 9165e30ae6da8d4bb1c9163a92a2101ed076b7eb..a5b9533d05f9ab5b1f0b46c5ecd08c3424d1e34e 100644
--- a/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc
+++ b/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc
@@ -592,8 +592,15 @@ class ChromeRenderProcessHostBackgroundingTest
// Test to make sure that a process is backgrounded when the audio stops playing
// from the active tab and there is an immediate tab switch.
+// Disable on Windows due to ongoing flakiness. (crbug.com/616421)
+#if defined(OS_WIN)
+#define MAYBE_ProcessPriorityAfterStoppedAudio \
+ DISABLED_ProcessPriorityAfterStoppedAudio
+#else
+#define MAYBE_ProcessPriorityAfterStoppedAudio ProcessPriorityAfterStoppedAudio
+#endif
IN_PROC_BROWSER_TEST_F(ChromeRenderProcessHostBackgroundingTest,
- ProcessPriorityAfterStoppedAudio) {
+ MAYBE_ProcessPriorityAfterStoppedAudio) {
// This test is invalid on platforms that can't background.
if (!base::Process::CanBackgroundProcesses())
return;
« 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