Chromium Code Reviews| Index: webrtc/call/call_perf_tests.cc |
| diff --git a/webrtc/call/call_perf_tests.cc b/webrtc/call/call_perf_tests.cc |
| index f4422f4433ea48326ebb5ab4d93e22ccdd99189f..24807c837187dd632b6146b75dfdd61911d8a4e0 100644 |
| --- a/webrtc/call/call_perf_tests.cc |
| +++ b/webrtc/call/call_perf_tests.cc |
| @@ -377,17 +377,22 @@ void CallPerfTest::TestAudioVideoSync(bool fec, |
| VoiceEngine::Delete(voice_engine); |
| } |
| -TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioCreatedFirst) { |
| +// TODO(danilchap): Enable this test for detailed AVSync troubleshooting. |
| +TEST_F(CallPerfTest, |
| + DISABLED_PlaysOutAudioAndVideoInSyncWithAudioCreatedFirst) { |
| TestAudioVideoSync(false, true, DriftingClock::kNoDrift, |
| DriftingClock::kNoDrift, DriftingClock::kNoDrift); |
| } |
| -TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoCreatedFirst) { |
| +// TODO(danilchap): Enable this test for detailed AVSync troubleshooting. |
| +TEST_F(CallPerfTest, |
| + DISABLED_PlaysOutAudioAndVideoInSyncWithVideoCreatedFirst) { |
| TestAudioVideoSync(false, false, DriftingClock::kNoDrift, |
| DriftingClock::kNoDrift, DriftingClock::kNoDrift); |
| } |
| -TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithFec) { |
| +// TODO(danilchap): Enable this test for detailed AVSync troubleshooting. |
| +TEST_F(CallPerfTest, DISABLED_PlaysOutAudioAndVideoInSyncWithFec) { |
| TestAudioVideoSync(true, false, DriftingClock::kNoDrift, |
| DriftingClock::kNoDrift, DriftingClock::kNoDrift); |
| } |
| @@ -399,13 +404,15 @@ TEST_F(CallPerfTest, DISABLED_PlaysOutAudioAndVideoInSyncWithVideoNtpDrift) { |
| DriftingClock::kNoDrift, DriftingClock::kNoDrift); |
| } |
| -TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioRtpDrift) { |
| +// TODO(danilchap): Enable this test for detailed AVSync troubleshooting. |
| +TEST_F(CallPerfTest, DISABLED_PlaysOutAudioAndVideoInSyncWithAudioRtpDrift) { |
| TestAudioVideoSync(false, true, DriftingClock::kNoDrift, |
| DriftingClock::kNoDrift, |
| DriftingClock::PercentsFaster(30.0f)); |
| } |
| -TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoRtpDrift) { |
| +// TODO(danilchap): Enable this test for detailed AVSync troubleshooting. |
| +TEST_F(CallPerfTest, DISABLED_PlaysOutAudioAndVideoInSyncWithVideoRtpDrift) { |
| TestAudioVideoSync(false, true, DriftingClock::kNoDrift, |
| DriftingClock::PercentsFaster(30.0f), |
| DriftingClock::kNoDrift); |
| @@ -418,7 +425,7 @@ TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioFasterThanVideoDrift) { |
| } |
| TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoFasterThanAudioDrift) { |
| - TestAudioVideoSync(false, true, DriftingClock::kNoDrift, |
| + TestAudioVideoSync(true, false, DriftingClock::kNoDrift, |
|
kwiberg-webrtc
2016/02/12 09:30:38
This change appears to be unrelated to the rest of
danilchap
2016/02/12 09:54:26
flags changed to cover situations that were covere
kwiberg-webrtc
2016/02/12 10:07:09
Oh, OK.
|
| DriftingClock::PercentsFaster(30.0f), |
| DriftingClock::PercentsSlower(30.0f)); |
| } |