OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 false, false); | 463 false, false); |
464 RunBaseTest(&test); | 464 RunBaseTest(&test); |
465 } | 465 } |
466 | 466 |
467 // Disabled on Mac due to flakiness, see | 467 // Disabled on Mac due to flakiness, see |
468 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5407 | 468 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5407 |
469 #ifndef WEBRTC_MAC | 469 #ifndef WEBRTC_MAC |
470 | 470 |
471 static const uint32_t kStartBitrateBps = 60000; | 471 static const uint32_t kStartBitrateBps = 60000; |
472 | 472 |
473 TEST_F(RampUpTest, UpDownUpOneStream) { | 473 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 |
| 474 TEST_F(RampUpTest, DISABLED_UpDownUpOneStream) { |
474 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 475 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
475 false, false); | 476 false, false); |
476 RunBaseTest(&test); | 477 RunBaseTest(&test); |
477 } | 478 } |
478 | 479 |
479 TEST_F(RampUpTest, UpDownUpThreeStreams) { | 480 TEST_F(RampUpTest, UpDownUpThreeStreams) { |
480 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 481 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
481 false, false); | 482 false, false); |
482 RunBaseTest(&test); | 483 RunBaseTest(&test); |
483 } | 484 } |
484 | 485 |
485 TEST_F(RampUpTest, UpDownUpOneStreamRtx) { | 486 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 |
| 487 TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) { |
486 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 488 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
487 true, false); | 489 true, false); |
488 RunBaseTest(&test); | 490 RunBaseTest(&test); |
489 } | 491 } |
490 | 492 |
491 TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { | 493 TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { |
492 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 494 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
493 true, false); | 495 true, false); |
494 RunBaseTest(&test); | 496 RunBaseTest(&test); |
495 } | 497 } |
496 | 498 |
497 TEST_F(RampUpTest, UpDownUpOneStreamByRedRtx) { | 499 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 |
| 500 TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamByRedRtx) { |
498 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 501 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
499 true, true); | 502 true, true); |
500 RunBaseTest(&test); | 503 RunBaseTest(&test); |
501 } | 504 } |
502 | 505 |
503 TEST_F(RampUpTest, UpDownUpThreeStreamsByRedRtx) { | 506 TEST_F(RampUpTest, UpDownUpThreeStreamsByRedRtx) { |
504 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, | 507 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTime, |
505 true, true); | 508 true, true); |
506 RunBaseTest(&test); | 509 RunBaseTest(&test); |
507 } | 510 } |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 true); | 580 true); |
578 RunBaseTest(&test); | 581 RunBaseTest(&test); |
579 } | 582 } |
580 | 583 |
581 TEST_F(RampUpTest, TransportSequenceNumberSingleStreamWithHighStartBitrate) { | 584 TEST_F(RampUpTest, TransportSequenceNumberSingleStreamWithHighStartBitrate) { |
582 RampUpTester test(1, 0, 0.9 * kSingleStreamTargetBps, | 585 RampUpTester test(1, 0, 0.9 * kSingleStreamTargetBps, |
583 RtpExtension::kTransportSequenceNumber, false, false); | 586 RtpExtension::kTransportSequenceNumber, false, false); |
584 RunBaseTest(&test); | 587 RunBaseTest(&test); |
585 } | 588 } |
586 } // namespace webrtc | 589 } // namespace webrtc |
OLD | NEW |