mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-29 13:26:33 +01:00
Disable flaky AddMediaToConnectedBundleDoesNotRestartIce on tsan
Bug: webrtc:12538 Change-Id: I223f159904ffef5c7736a23c16a031f153c6a6da Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/211868 Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33463}
This commit is contained in:
parent
e657d8759d
commit
685be147cb
1 changed files with 9 additions and 1 deletions
|
@ -2297,8 +2297,16 @@ TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithIceRenomination) {
|
|||
// With a max bundle policy and RTCP muxing, adding a new media description to
|
||||
// the connection should not affect ICE at all because the new media will use
|
||||
// the existing connection.
|
||||
// TODO(bugs.webrtc.org/12538): Fails on tsan.
|
||||
#if defined(THREAD_SANITIZER)
|
||||
#define MAYBE_AddMediaToConnectedBundleDoesNotRestartIce \
|
||||
DISABLED_AddMediaToConnectedBundleDoesNotRestartIce
|
||||
#else
|
||||
#define MAYBE_AddMediaToConnectedBundleDoesNotRestartIce \
|
||||
AddMediaToConnectedBundleDoesNotRestartIce
|
||||
#endif
|
||||
TEST_P(PeerConnectionIntegrationTest,
|
||||
AddMediaToConnectedBundleDoesNotRestartIce) {
|
||||
MAYBE_AddMediaToConnectedBundleDoesNotRestartIce) {
|
||||
PeerConnectionInterface::RTCConfiguration config;
|
||||
config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
|
||||
config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
|
||||
|
|
Loading…
Reference in a new issue