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 #include <stdio.h> | 10 #include <stdio.h> |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 2000000, | 697 2000000, |
698 0.0, | 698 0.0, |
699 0.0, | 699 0.0, |
700 kFullStackTestDurationSecs}; | 700 kFullStackTestDurationSecs}; |
701 foreman_cif.link.queue_length_packets = 32; | 701 foreman_cif.link.queue_length_packets = 32; |
702 foreman_cif.link.queue_delay_ms = 100; | 702 foreman_cif.link.queue_delay_ms = 100; |
703 foreman_cif.link.link_capacity_kbps = 1000; | 703 foreman_cif.link.link_capacity_kbps = 1000; |
704 RunTest(foreman_cif); | 704 RunTest(foreman_cif); |
705 } | 705 } |
706 | 706 |
707 TEST_F(FullStackTest, ScreenshareSlides) { | 707 // Temporarily disabled on Android due to low test timeouts. |
| 708 // https://code.google.com/p/chromium/issues/detail?id=513170 |
| 709 #include "webrtc/test/testsupport/gtest_disable.h" |
| 710 TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlides)) { |
708 FullStackTestParams screenshare_params = { | 711 FullStackTestParams screenshare_params = { |
709 "screenshare_slides", | 712 "screenshare_slides", |
710 {"screenshare_slides", 1850, 1110, 5}, | 713 {"screenshare_slides", 1850, 1110, 5}, |
711 true, | 714 true, |
712 50000, | 715 50000, |
713 200000, | 716 200000, |
714 2000000, | 717 2000000, |
715 0.0, | 718 0.0, |
716 0.0, | 719 0.0, |
717 kFullStackTestDurationSecs}; | 720 kFullStackTestDurationSecs}; |
718 RunTest(screenshare_params); | 721 RunTest(screenshare_params); |
719 } | 722 } |
720 } // namespace webrtc | 723 } // namespace webrtc |
OLD | NEW |