From 7e3ee8362bff3eedb4f07a5ef53f354285d65599 Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Mon, 24 Mar 2014 10:45:13 +0000 Subject: [PATCH] Disabled some of the remote bitrate estimator baseline tests. These are disabled temporarily until updated. R=solenberg@webrtc.org TBR=solenberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/10469004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5758 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../remote_bitrate_estimators_test.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc index 3d86fbb1f..e4fb4fa90 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc @@ -67,7 +67,7 @@ TEST_P(BweTest, UnlimitedSpeed) { RunFor(10 * 60 * 1000); } -TEST_P(BweTest, SteadyLoss) { +TEST_P(BweTest, DISABLED_SteadyLoss) { LossFilter loss(this); loss.SetLoss(20.0); RunFor(10 * 60 * 1000); @@ -87,7 +87,7 @@ TEST_P(BweTest, SteadyDelay) { RunFor(10 * 60 * 1000); } -TEST_P(BweTest, IncreasingDelay1) { +TEST_P(BweTest, DISABLED_IncreasingDelay1) { DelayFilter delay(this); RunFor(10 * 60 * 1000); for (int i = 0; i < 30 * 2; ++i) { @@ -163,13 +163,13 @@ TEST_P(BweTest, IncreasingReorder1) { } } -TEST_P(BweTest, SteadyChoke) { +TEST_P(BweTest, DISABLED_SteadyChoke) { ChokeFilter choke(this); choke.SetCapacity(140); RunFor(10 * 60 * 1000); } -TEST_P(BweTest, IncreasingChoke1) { +TEST_P(BweTest, DISABLED_IncreasingChoke1) { ChokeFilter choke(this); for (int i = 1200; i >= 100; i -= 100) { choke.SetCapacity(i); @@ -177,7 +177,7 @@ TEST_P(BweTest, IncreasingChoke1) { } } -TEST_P(BweTest, IncreasingChoke2) { +TEST_P(BweTest, DISABLED_IncreasingChoke2) { ChokeFilter choke(this); RunFor(60 * 1000); for (int i = 1200; i >= 100; i -= 20) { @@ -186,7 +186,7 @@ TEST_P(BweTest, IncreasingChoke2) { } } -TEST_P(BweTest, Multi1) { +TEST_P(BweTest, DISABLED_Multi1) { DelayFilter delay(this); ChokeFilter choke(this); RateCounterFilter counter(this);