From c768a47014b55420c1f579391bc99d28fcd39127 Mon Sep 17 00:00:00 2001 From: James Graham Date: Thu, 30 Nov 2023 04:43:31 +0000 Subject: [PATCH] Bug 1866846 [wpt PR 43372] - Increase Android chunks and app startup timeout, a=testonly Automatic update from web-platform-tests Increase Android chunks and app startup timeout This is now enough to give a clean run on the triggers branch. -- wpt-commits: 33d6c1a1aa67cf45e8ad76989972d31095ff3205 wpt-pr: 43372 --- testing/web-platform/tests/tools/ci/tc/tasks/test.yml | 2 +- testing/web-platform/tests/tools/ci/tc/tests/test_valid.py | 4 ++++ testing/web-platform/tests/tools/wpt/run.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/testing/web-platform/tests/tools/ci/tc/tasks/test.yml b/testing/web-platform/tests/tools/ci/tc/tasks/test.yml index 163e15c185cf..cdb6687d065d 100644 --- a/testing/web-platform/tests/tools/ci/tc/tasks/test.yml +++ b/testing/web-platform/tests/tools/ci/tc/tasks/test.yml @@ -113,7 +113,7 @@ components: scopes: - "docker-worker:capability:privileged" chunks-override: - testharness: 20 + testharness: 24 tox-python3_7: env: diff --git a/testing/web-platform/tests/tools/ci/tc/tests/test_valid.py b/testing/web-platform/tests/tools/ci/tc/tests/test_valid.py index 544c187affa9..3a4ed62c3a16 100644 --- a/testing/web-platform/tests/tools/ci/tc/tests/test_valid.py +++ b/testing/web-platform/tests/tools/ci/tc/tests/test_valid.py @@ -289,6 +289,10 @@ def test_verify_payload(): 'wpt-firefox_android-nightly-testharness-18', 'wpt-firefox_android-nightly-testharness-19', 'wpt-firefox_android-nightly-testharness-20', + 'wpt-firefox_android-nightly-testharness-21', + 'wpt-firefox_android-nightly-testharness-22', + 'wpt-firefox_android-nightly-testharness-23', + 'wpt-firefox_android-nightly-testharness-24', 'wpt-firefox-stable-reftest-1', 'wpt-firefox-stable-reftest-2', 'wpt-firefox-stable-reftest-3', diff --git a/testing/web-platform/tests/tools/wpt/run.py b/testing/web-platform/tests/tools/wpt/run.py index f2c27c220bfa..d0f7ceb975d4 100644 --- a/testing/web-platform/tests/tools/wpt/run.py +++ b/testing/web-platform/tests/tools/wpt/run.py @@ -412,7 +412,7 @@ class FirefoxAndroid(BrowserSetup): self._logcat.start(device_serial) if self.browser.apk_path: device.uninstall_app(app) - device.install_app(self.browser.apk_path) + device.install_app(self.browser.apk_path, timeout=600) elif not device.is_app_installed(app): raise WptrunError("app %s not installed on device %s" % (app, device_serial)) -- 2.11.4.GIT