Commit 393b5d35 authored by rsleevi@chromium.org's avatar rsleevi@chromium.org

Disable DeviceOrientationproviderTest.ObserverNotRemoved on Linux

BUG=104950
TBR=hans@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111326 0039d316-1c4b-4281-b951-d872f2087c98
parent 9fc176de
......@@ -248,8 +248,13 @@ TEST_F(DeviceOrientationProviderTest, MultipleObserversPushTest) {
provider_->RemoveObserver(checker_c.get());
}
// Flaky. See crbug.com/104950.
TEST_F(DeviceOrientationProviderTest, FLAKY_ObserverNotRemoved) {
#if defined(OS_LINUX)
// Flakily DCHECKs on Linux. See crbug.com/104950.
#define MAYBE_ObserverNotRemoved DISABLED_ObserverNotRemoved
#else
#define MAYBE_ObserverNotRemoved ObserverNotRemoved
#endif
TEST_F(DeviceOrientationProviderTest, MAYBE_ObserverNotRemoved) {
scoped_refptr<MockOrientationFactory> orientation_factory(
new MockOrientationFactory());
Init(MockOrientationFactory::CreateDataFetcher);
......
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