mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
Disable InjectDependencyDescriptor on Windows.
Change-Id: I6dd715063cc5b75b378e35b85f88974936229150 Bug: webrtc:15876 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/343341 Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org> Commit-Queue: Jeremy Leconte <jleconte@google.com> Cr-Commit-Position: refs/heads/main@{#41928}
This commit is contained in:
parent
626edea852
commit
d7d5c0c1db
1 changed files with 7 additions and 1 deletions
|
@ -142,7 +142,13 @@ TEST_F(PeerConnectionFieldTrialTest, EnableDependencyDescriptorAdvertised) {
|
|||
|
||||
// Tests that dependency descriptor RTP header extensions can be exchanged
|
||||
// via SDP munging, even if dependency descriptor field trial is disabled.
|
||||
TEST_F(PeerConnectionFieldTrialTest, InjectDependencyDescriptor) {
|
||||
#ifdef WEBRTC_WIN
|
||||
// TODO: crbug.com/webrtc/15876 - Test is flaky on Windows machines.
|
||||
#define MAYBE_InjectDependencyDescriptor DISABLED_InjectDependencyDescriptor
|
||||
#else
|
||||
#define MAYBE_InjectDependencyDescriptor InjectDependencyDescriptor
|
||||
#endif
|
||||
TEST_F(PeerConnectionFieldTrialTest, MAYBE_InjectDependencyDescriptor) {
|
||||
std::unique_ptr<test::ScopedKeyValueConfig> field_trials =
|
||||
std::make_unique<test::ScopedKeyValueConfig>(
|
||||
"WebRTC-DependencyDescriptorAdvertised/Disabled/");
|
||||
|
|
Loading…
Reference in a new issue