commit | 0925fe36cfa51c2d0a14771faac306bc3ba8801a | [log] [tgz] |
---|---|---|
author | Johannes Kron <kron@webrtc.org> | Wed Mar 01 15:19:47 2023 |
committer | WebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Mar 01 15:43:34 2023 |
tree | 1800796a4a32fc5ecfc8c0331b3d05314d8ab4f6 | |
parent | c1dc4fd0efffea0639ac2718d4c2f9da930d841f [diff] |
Follow-up CL to deflake RTCStatsIntegrationTest.GetStatsFromCallee This is a follow-up to https://webrtc-review.googlesource.com/c/src/+/295724. Test is still failing sometimes. Add additional constraint. Bug: webrtc:14952 Change-Id: Iddc2733459733c0f3e40aea303752f055cb865c5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/295665 Reviewed-by: Henrik Boström <hbos@webrtc.org> Commit-Queue: Henrik Boström <hbos@webrtc.org> Auto-Submit: Johannes Kron <kron@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39441}
diff --git a/pc/rtc_stats_integrationtest.cc b/pc/rtc_stats_integrationtest.cc index 5cd3db9..f01d487 100644 --- a/pc/rtc_stats_integrationtest.cc +++ b/pc/rtc_stats_integrationtest.cc
@@ -1173,6 +1173,7 @@ auto inbound_stats = report->GetStatsOfType<RTCRemoteInboundRtpStreamStats>(); return !inbound_stats.empty() && + inbound_stats.front()->round_trip_time.is_defined() && inbound_stats.front()->round_trip_time_measurements.is_defined(); }; EXPECT_TRUE_WAIT(GetStatsReportAndReturnTrueIfRttIsDefined(), kMaxWaitMs);