mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00
pc: Increase timeout for EndToEndCallWithSctpDataChannelFullBuffer
The timeout was not long enough in debug mode on slower machines. Bug: chromium:40072842 Change-Id: Id82399cd7211abf5dd2e03ffa2ee4bd49f8c492f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/344680 Commit-Queue: Florent Castelli <orphis@webrtc.org> Auto-Submit: Florent Castelli <orphis@webrtc.org> Reviewed-by: Victor Boivie <boivie@webrtc.org> Commit-Queue: Victor Boivie <boivie@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41971}
This commit is contained in:
parent
b16b5808f5
commit
15e46aa358
2 changed files with 4 additions and 1 deletions
|
@ -295,8 +295,10 @@ TEST_P(DataChannelIntegrationTest, EndToEndCallWithSctpDataChannelFullBuffer) {
|
|||
DataChannelInterface::DataState::kClosing,
|
||||
DataChannelInterface::DataState::kClosed};
|
||||
|
||||
// Debug data channels are very slow, use a long timeout for those slow,
|
||||
// heavily parallelized runs.
|
||||
EXPECT_EQ_WAIT(DataChannelInterface::DataState::kClosed,
|
||||
caller()->data_observer()->state(), kDefaultTimeout);
|
||||
caller()->data_observer()->state(), kLongTimeout);
|
||||
EXPECT_THAT(caller()->data_observer()->states(),
|
||||
::testing::ElementsAreArray(expected_states));
|
||||
|
||||
|
|
|
@ -141,6 +141,7 @@ using ::testing::Values;
|
|||
using RTCConfiguration = PeerConnectionInterface::RTCConfiguration;
|
||||
|
||||
static const int kDefaultTimeout = 10000;
|
||||
static const int kLongTimeout = 60000;
|
||||
static const int kMaxWaitForStatsMs = 3000;
|
||||
static const int kMaxWaitForActivationMs = 5000;
|
||||
static const int kMaxWaitForFramesMs = 10000;
|
||||
|
|
Loading…
Reference in a new issue