commit | c2f2c1a66cc0dffac686bb89e2fdcf0ab5269275 | [log] [tgz] |
---|---|---|
author | Andrey Pronin <apronin@chromium.org> | Tue Oct 19 13:01:15 2021 -0700 |
committer | Commit Bot <commit-bot@chromium.org> | Mon Nov 01 19:21:22 2021 +0000 |
tree | b4124f9d9896011ed1d11765a95d70ce88581519 | |
parent | 6a08280c7501d3f6a96fe97b5248c8c898d5a99a [diff] |
autotest: update expected attrs for kernel space This CL updates the test expectations after TPMA_NV_WRITE_STCLEAR was added to kernel antirollback space attributes in coreboot (https://review.coreboot.org/c/coreboot/+/56358). BUG=b:202790512 TEST=verified the regex: perm = '(0x60050001|0x60054001)' def check(out, expected): if (not re.match(expected, out)): raise Exception("FAIL") check('sometext 0x60050001', '.*%s$' % perm) check('sometext 0x60054001', '.*%s$' % perm) print('SUCCESS') check('sometext 0x60055001', '.*%s$' % perm) # expected exception Change-Id: I2be9fb7f59f43e8cec0bd9da6937725dc9123ddb Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/3232251 Tested-by: Andrey Pronin <apronin@chromium.org> Auto-Submit: Andrey Pronin <apronin@chromium.org> Reviewed-by: Mary Ruthven <mruthven@chromium.org> Commit-Queue: Mary Ruthven <mruthven@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.