Commit 1cb23b23 authored by mnissler@chromium.org's avatar mnissler@chromium.org

Mark NamedInterfaceTest.BasicNamedInterface as flaky.

BUG=66414
TEST=none
TBR=dtu

Review URL: http://codereview.chromium.org/6289008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71650 0039d316-1c4b-4281-b951-d872f2087c98
parent 5abd6c80
......@@ -23,10 +23,17 @@ class NamedInterfaceTest : public UITest {
}
};
// This test is flaky on Linux bots. http://crbug.com/66414
#if defined(OS_LINUX)
#define MAYBE_BasicNamedInterface FLAKY_BasicNamedInterface
#else
#define MAYBE_BasicNamedInterface BasicNamedInterface
#endif
// Basic sanity test for named testing interface which
// launches a browser instance that uses a named socket, then
// sends it some commands to open some tabs over that socket.
TEST_F(NamedInterfaceTest, BasicNamedInterface) {
TEST_F(NamedInterfaceTest, MAYBE_BasicNamedInterface) {
scoped_refptr<BrowserProxy> browser_proxy(
automation()->GetBrowserWindow(0));
ASSERT_TRUE(browser_proxy.get());
......
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