Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Unified Diff: net/quic/congestion_control/inter_arrival_sender_test.cc

Issue 125403006: Various QUIC cleanups to sync with internal code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comments Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/congestion_control/inter_arrival_sender.cc ('k') | net/quic/congestion_control/leaky_bucket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/inter_arrival_sender_test.cc
diff --git a/net/quic/congestion_control/inter_arrival_sender_test.cc b/net/quic/congestion_control/inter_arrival_sender_test.cc
index 7d9c39ce6dcad5e2900ee8aa3b88e6f711430855..ff83b487c87f7af5a7971180317b10a5237e0a69 100644
--- a/net/quic/congestion_control/inter_arrival_sender_test.cc
+++ b/net/quic/congestion_control/inter_arrival_sender_test.cc
@@ -153,7 +153,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
acc_arrival_time.ToMicroseconds();
EXPECT_NEAR(0.7f * probe_rate,
sender_.BandwidthEstimate().ToBytesPerSecond(), 1000);
- DLOG(INFO) << "After probe";
+ DVLOG(1) << "After probe";
// Send 50 bursts, make sure that we move fast in the beginning.
for (int i = 0; i < 50; ++i) {
SendAvailableCongestionWindow();
@@ -198,7 +198,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
EXPECT_NEAR(0.99f * probe_rate,
sender_.BandwidthEstimate().ToBytesPerSecond(), 1000);
EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 1560, 10);
- DLOG(INFO) << "Near available channel estimate";
+ DVLOG(1) << "Near available channel estimate";
// Send 50 bursts, make sure that we move very slow close to the probe rate.
for (int i = 0; i < 50; ++i) {
@@ -214,7 +214,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
EXPECT_NEAR(1.00f * probe_rate,
sender_.BandwidthEstimate().ToBytesPerSecond(), 2000);
EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 2000, 100);
- DLOG(INFO) << "At available channel estimate";
+ DVLOG(1) << "At available channel estimate";
// Send 50 bursts, make sure that we move very slow close to the probe rate.
for (int i = 0; i < 50; ++i) {
@@ -280,7 +280,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
EXPECT_NEAR(halfway_rate,
sender_.BandwidthEstimate().ToBytesPerSecond(), 5000);
EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 6600, 100);
- DLOG(INFO) << "Near halfway point";
+ DVLOG(1) << "Near halfway point";
// Send until we reach max channel capacity.
for (int i = 0; i < 1500; ++i) {
« no previous file with comments | « net/quic/congestion_control/inter_arrival_sender.cc ('k') | net/quic/congestion_control/leaky_bucket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698