Disable AppWindowAPI.TestRestoreGeometryCacheChange on Mac

Flaky failures, see bug

BUG=324915
TEST=browser_tests
R=asargent@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238497 0039d316-1c4b-4281-b951-d872f2087c98
parent a34f9bed
...@@ -115,7 +115,13 @@ IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestoreAfterClose) { ...@@ -115,7 +115,13 @@ IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestoreAfterClose) {
ASSERT_TRUE(RunAppWindowAPITest("testRestoreAfterClose")) << message_; ASSERT_TRUE(RunAppWindowAPITest("testRestoreAfterClose")) << message_;
} }
IN_PROC_BROWSER_TEST_F(AppWindowAPI, TestRestoreGeometryCacheChange) { // Flaky failures on mac_rel, see http://crbug.com/324915
#if defined(OS_MACOSX)
#define MAYBE_TestRestoreGeometryCacheChange DISABLED_TestRestoreGeometryCacheChange
#else
#define MAYBE_TestRestoreGeometryCacheChange TestRestoreGeometryCacheChange
#endif
IN_PROC_BROWSER_TEST_F(AppWindowAPI, MAYBE_TestRestoreGeometryCacheChange) {
// This test is similar to the other AppWindowAPI tests except that at some // This test is similar to the other AppWindowAPI tests except that at some
// point the app will send a 'ListenGeometryChange' message at which point the // point the app will send a 'ListenGeometryChange' message at which point the
// test will check if the geometry cache entry for the test window has // test will check if the geometry cache entry for the test window has
......
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