blob: aa0842b681a9b036f1aeb88a14e8b545f6c5b56d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/chrome_process_util.h"
#include "chrome/test/ui/ui_test.h"
class ChromeProcessUtilTest : public UITest {
};
// Flaky on Mac only. See http://crbug.com/79175
TEST_F(ChromeProcessUtilTest, FLAKY_SanityTest) {
EXPECT_TRUE(IsBrowserRunning());
ChromeProcessList processes = GetRunningChromeProcesses(browser_process_id());
EXPECT_FALSE(processes.empty());
QuitBrowser();
EXPECT_FALSE(IsBrowserRunning());
EXPECT_EQ(-1, browser_process_id());
processes = GetRunningChromeProcesses(browser_process_id());
EXPECT_TRUE(processes.empty());
}
|