From 6ea4f6397e5601980b64c4174a8d9068bdf556cd Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Thu, 13 Mar 2014 09:21:26 +0000 Subject: [PATCH] Enable all RampUpTest.UpDownUp* tests With issue 2987 fixed, all these tests can be enabled without problems. BUG=3010 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/9889004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5693 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video/rampup_tests.cc | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/webrtc/video/rampup_tests.cc b/webrtc/video/rampup_tests.cc index 3347cc8f1a..1772444bed 100644 --- a/webrtc/video/rampup_tests.cc +++ b/webrtc/video/rampup_tests.cc @@ -526,19 +526,10 @@ TEST_F(RampUpTest, WithPacingAndRtx) { RunRampUpTest(true, true); } TEST_F(RampUpTest, UpDownUpOneStream) { RunRampUpDownUpTest(1, false); } -// TODO(hlundin): Find out why these tests are failing on some bots and -// re-enable. -// See https://code.google.com/p/webrtc/issues/detail?id=3010. -TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreams) { - RunRampUpDownUpTest(3, false); -} +TEST_F(RampUpTest, UpDownUpThreeStreams) { RunRampUpDownUpTest(3, false); } -TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) { - RunRampUpDownUpTest(1, true); -} +TEST_F(RampUpTest, UpDownUpOneStreamRtx) { RunRampUpDownUpTest(1, true); } -TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreamsRtx) { - RunRampUpDownUpTest(3, true); -} +TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { RunRampUpDownUpTest(3, true); } } // namespace webrtc