Add metric name for MinVideoAndAudioBitRate.

It shouldn't be empty. As it was before it printed
  RESULT min_test_bitrate_no_allocation_strategy: = 80 kbps
Whereas now it prints
  RESULT min_test_bitrate_no_allocation_strategy: min_bitrate= 80 kbps

Bug: webrtc:7156
Change-Id: Ie86e3912d296d6d7bd6936d1709df9d2dc7fc143
Reviewed-on: https://webrtc-review.googlesource.com/38040
Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21529}
This commit is contained in:
Edward Lemur
2018-01-08 17:35:51 +01:00
committed by Commit Bot
parent 6728003bcf
commit 7f331fa2fb

View File

@ -894,11 +894,11 @@ void CallPerfTest::TestMinAudioVideoBitrate(
}
EXPECT_GT(last_passed_test_bitrate, -1)
<< "Minimum supported bitrate out of the test scope";
webrtc::test::PrintResult("min_test_bitrate_",
use_bitrate_allocation_strategy_
? "with_allocation_strategy"
: "no_allocation_strategy",
"", last_passed_test_bitrate, "kbps", false);
webrtc::test::PrintResult(
"min_test_bitrate_",
use_bitrate_allocation_strategy_ ? "with_allocation_strategy"
: "no_allocation_strategy",
"min_bitrate", last_passed_test_bitrate, "kbps", false);
}
void OnCallsCreated(Call* sender_call, Call* receiver_call) override {