Use DISABLE_ instead of commenting out tests

BUG=2636
TBR=stefan@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5647 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org 2014-03-06 09:12:00 +00:00
parent 845862f279
commit 998cb8fcd0

View File

@ -528,10 +528,16 @@ TEST_F(RampUpTest, UpDownUpOneStream) { RunRampUpDownUpTest(1, false); }
// TODO(hlundin): Find out why these tests are failing on some bots and
// re-enable.
//TEST_F(RampUpTest, UpDownUpThreeStreams) { RunRampUpDownUpTest(3, false); }
//
//TEST_F(RampUpTest, UpDownUpOneStreamRtx) { RunRampUpDownUpTest(1, true); }
//
//TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { RunRampUpDownUpTest(3, true); }
TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreams) {
RunRampUpDownUpTest(3, false);
}
TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) {
RunRampUpDownUpTest(1, true);
}
TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreamsRtx) {
RunRampUpDownUpTest(3, true);
}
} // namespace webrtc