Disable flaky VolumeTest.DefaultSpeakerVolumeIsAtMost255.

This test failed on six CLs in a row recently.

TBR=xians@webrtc.org
BUG=issue367
TEST=voe_auto_test

Review URL: https://webrtc-codereview.appspot.com/595007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2317 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2012-05-29 22:05:15 +00:00
parent 5f23d64cf2
commit aafa49bb85

View File

@ -13,7 +13,7 @@
class VolumeTest : public AfterStreamingFixture {
};
TEST_F(VolumeTest, DefaultSpeakerVolumeIsAtMost255) {
TEST_F(VolumeTest, DISABLED_DefaultSpeakerVolumeIsAtMost255) {
unsigned int volume = 1000;
EXPECT_EQ(0, voe_volume_control_->GetSpeakerVolume(volume));
EXPECT_LE(volume, 255u);