Commit 7806b3cf authored by jshin@chromium.org's avatar jshin@chromium.org

Mark ExtensionAPIClientTest.CreateWindow as flaky on Windows

BUG=46217
TEST=greener tree
TBR=jcivelli
Review URL: http://codereview.chromium.org/2751004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49345 0039d316-1c4b-4281-b951-d872f2087c98
parent f017d8da
......@@ -213,7 +213,13 @@ TEST_F(ExtensionAPIClientTest, DISABLED_GetAllWindows) {
"windows.getAll", "null");
}
TEST_F(ExtensionAPIClientTest, CreateWindow) {
// Flaky on Windows. http://crosbug.com/46217
#if defined(OS_WIN)
#define MAYBE_CreateWindow FLAKY_CreateWindow
#else
#define MAYBE_CreateWindow CreateWindow
#endif
TEST_F(ExtensionAPIClientTest, MAYBE_CreateWindow) {
ExpectJsFail("chrome.windows.create({url: 1}, function(){});",
"Uncaught Error: Invalid value for argument 0. Property "
"'url': Expected 'string' but got 'integer'.");
......
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