Commit d99b556d authored by danakj@chromium.org's avatar danakj@chromium.org

Disable flaky test ChromeRenderProcessHostTest.Backgrounding on Windows.

TBR=jam@chromium.org
BUG=394368

Review URL: https://codereview.chromium.org/398053003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283408 0039d316-1c4b-4281-b951-d872f2087c98
parent 2ea94503
......@@ -266,7 +266,13 @@ IN_PROC_BROWSER_TEST_F(ChromeRenderProcessHostTest, ProcessPerTab) {
// We don't change process priorities on Mac or Posix because the user lacks the
// permission to raise a process' priority even after lowering it.
#if defined(OS_WIN) || defined(OS_LINUX)
IN_PROC_BROWSER_TEST_F(ChromeRenderProcessHostTest, Backgrounding) {
#if defined(OS_WIN)
// Flaky test: crbug.com/394368
#define MAYBE_Backgrounding DISABLED_Backgrounding
#else
#define MAYBE_Backgrounding Backgrounding
#endif
IN_PROC_BROWSER_TEST_F(ChromeRenderProcessHostTest, MAYBE_Backgrounding) {
if (!base::Process::CanBackgroundProcesses()) {
LOG(ERROR) << "Can't background processes";
return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment