commit | c626b30a04dc3fe86d472b23acf35db3e1ad2a87 | [log] [tgz] |
---|---|---|
author | Kazuhiro Inaba <kinaba@google.com> | Thu Feb 25 14:17:33 2021 +0900 |
committer | Commit Bot <commit-bot@chromium.org> | Thu Mar 18 14:53:30 2021 +0000 |
tree | 6c96ac9947e4c0aff3593efbc2cd4c3e5075ccba | |
parent | 728c9a70ae8ddca7835f97e033ccbc0fe8edc1c5 [diff] |
cheets_CTS/GTS: More frequent check for lock availability. Suppose 20 jobs scheduled simultaneously and the first job occupied the lock for 5 minutes to download files (very common case on moblab). Then the other 19 jobs will fail the first 9 lock attempts, leaving only 3 rounds of chance in very long stride (~ 2**12 seconds), often superseded by late-coming shorter-stride jobs and reach to the lock failure. This CL experimentally shorten the stride and also increase the retry count so that the long-waiting tasks have chance to eventually obtain the lock. BUG=b:126165348 TEST=run cheets_CTS_P.9.0_r15.arm.CtsUsbTests locally Change-Id: Idcd211e1c9d0f7d7e59eaf2c316525ef6b7d6048 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2717630 Reviewed-by: Shao-Chuan Lee <shaochuan@chromium.org> Commit-Queue: Ilja H. Friedel <ihf@chromium.org> Tested-by: Kazuhiro Inaba <kinaba@chromium.org> Auto-Submit: Kazuhiro Inaba <kinaba@chromium.org> (cherry picked from commit 32efd0870fc4dcf2be3f22d95941373920986d7d) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2772385 Reviewed-by: Kazuhiro Inaba <kinaba@chromium.org> Commit-Queue: Kazuhiro Inaba <kinaba@chromium.org>
Autotest is a framework for fully automated testing. It was originally designed to test the Linux kernel, and expanded by the Chrome OS team to validate complete system images of Chrome OS and Android.
Autotest is composed of a number of modules that will help you to do stand alone tests or setup a fully automated test grid, depending on what you are up to. A non extensive list of functionality is:
A body of code to run tests on the device under test. In this setup, test logic executes on the machine being tested, and results are written to files for later collection from a development machine or lab infrastructure.
A body of code to run tests against a remote device under test. In this setup, test logic executes on a development machine or piece of lab infrastructure, and the device under test is controlled remotely via SSH/adb/some combination of the above.
Developer tools to execute one or more tests. test_that
for Chrome OS and test_droid
for Android allow developers to run tests against a device connected to their development machine on their desk. These tools are written so that the same test logic that runs in the lab will run at their desk, reducing the number of configurations under which tests are run.
Lab infrastructure to automate the running of tests. This infrastructure is capable of managing and running tests against thousands of devices in various lab environments. This includes code for both synchronous and asynchronous scheduling of tests. Tests are run against this hardware daily to validate every build of Chrome OS.
Infrastructure to set up miniature replicas of a full lab. A full lab does entail a certain amount of administrative work which isn't appropriate for a work group interested in automated tests against a small set of devices. Since this scale is common during device bringup, a special setup, called Moblab, allows a natural progressing from desk -> mini lab -> full lab.
See the guides to test_that
and test_droid
:
See the best practices guide, existing tests, and comments in the code.
git clone https://chromium.googlesource.com/chromiumos/third_party/autotest
See the coding style guide for guidance on submitting patches.
You need to run utils/build_externals.py
to set up the dependencies for pre-upload hook tests.