Remove FourPeople_1280x720_30.yuv from resources for mobile builds.
Uploading of the file to device causes timeouts. I removed it from resources for iOS and Android builds and disabled the test that used the file since we don't really need to run it on test bots. Bug: webrtc:8936 Change-Id: Ia5e04c4630544eca8e56826c9e89c9c9f4dcb600 Reviewed-on: https://webrtc-review.googlesource.com/58090 Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Commit-Queue: Sergey Silkin <ssilkin@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22222}
This commit is contained in:
committed by
Commit Bot
parent
83b184210f
commit
556270c4d9
@ -600,9 +600,13 @@ if (rtc_include_tests) {
|
||||
"../../resources/foreman_160x120.yuv",
|
||||
"../../resources/foreman_176x144.yuv",
|
||||
"../../resources/foreman_320x240.yuv",
|
||||
"../../resources/FourPeople_1280x720_30.yuv",
|
||||
]
|
||||
|
||||
if (!(is_ios || is_android)) {
|
||||
video_coding_modules_tests_resources +=
|
||||
[ "../../resources/FourPeople_1280x720_30.yuv" ]
|
||||
}
|
||||
|
||||
if (is_ios || is_mac) {
|
||||
bundle_data("video_coding_modules_tests_resources_bundle_data") {
|
||||
testonly = true
|
||||
|
||||
@ -94,27 +94,12 @@ INSTANTIATE_TEST_CASE_P(CodecSettings,
|
||||
::testing::ValuesIn(kVideoCodecType),
|
||||
::testing::ValuesIn(kHwCodec)));
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, Foreman_128x96_30) {
|
||||
RunTest(128, 96, 30, "foreman_128x96");
|
||||
}
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, Foreman_160x120_30) {
|
||||
RunTest(160, 120, 30, "foreman_160x120");
|
||||
}
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, Foreman_176x144_30) {
|
||||
RunTest(176, 144, 30, "foreman_176x144");
|
||||
}
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, Foreman_320x240_30) {
|
||||
RunTest(320, 240, 30, "foreman_320x240");
|
||||
}
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, Foreman_352x288_30) {
|
||||
RunTest(352, 288, 30, "foreman_cif");
|
||||
}
|
||||
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized, FourPeople_1280x720_30) {
|
||||
TEST_P(VideoProcessorIntegrationTestParameterized,
|
||||
DISABLED_FourPeople_1280x720_30) {
|
||||
RunTest(1280, 720, 30, "FourPeople_1280x720_30");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user