Name Date Size #Lines LOC

..--

autotest_lib/H25-Apr-2025-

bin/H25-Apr-2025-9656

cli/H25-Apr-2025-3,2772,430

client/H25-Apr-2025-262,440199,064

contrib/H25-Apr-2025-2,2841,786

database/H25-Apr-2025-2,6011,817

docs/H25-Apr-2025-3,7492,758

frontend/H25-Apr-2025-38,55529,753

logs/H25-Apr-2025-21

metadata/H25-Apr-2025-17,06116,653

results/H25-Apr-2025-94

server/H25-Apr-2025-423,046341,414

site_utils/H25-Apr-2025-26,25619,844

test_suites/H25-Apr-2025-13,75910,735

tko/H25-Apr-2025-10,7608,333

utils/H25-Apr-2025-54,92341,673

venv/H25-Apr-2025-5851

.gitignoreH A D25-Apr-20251.5 KiB9077

.style.yapfH A D25-Apr-202560 43

BLUETOOTH_OWNERSH A D25-Apr-2025352 1716

CTS_OWNERSH A D25-Apr-202585 64

ENGPROD_OWNERSH A D25-Apr-2025715 3531

FINGERPRINT_OWNERSH A D25-Apr-2025158 86

FIRMWARE_OWNERSH A D25-Apr-2025362 1917

HARNESS_OWNERSH A D25-Apr-2025208 87

INFRA_OWNERSH A D25-Apr-2025441 2220

LGPL_LICENSEH A D25-Apr-20257.5 KiB166128

LICENSEH A D25-Apr-202517.8 KiB348285

METADATAH A D25-Apr-202543 43

MODULE_LICENSE_LGPLH A D25-Apr-20257.5 KiB166128

OWNERSH A D25-Apr-2025162 74

OWNERS.androidH A D25-Apr-2025311 1110

POWER_OWNERSH A D25-Apr-2025105 75

PRESUBMIT.cfgH A D25-Apr-20251.1 KiB2420

PRESUBMIT.pyH A D25-Apr-2025890 2612

README.mdH A D25-Apr-20252.8 KiB7146

WIFI_OWNERSH A D25-Apr-2025253 1312

__init__.pyH A D25-Apr-20250 10

common.pyH A D25-Apr-2025308 98

global_config.iniH A D25-Apr-202515.5 KiB382329

main.starH A D25-Apr-2025439 142

ssp_deploy_config.jsonH A D25-Apr-2025590 2726

unblocked_terms.txtH A D25-Apr-2025745 3535

README.md

1# Autotest: Automated integration testing for Android and ChromeOS Devices
2
3Autotest is a framework for fully automated testing. It was originally designed
4to test the Linux kernel, and expanded by the ChromeOS team to validate
5complete system images of ChromeOS and Android.
6
7Autotest is composed of a number of modules that will help you to do stand alone
8tests or setup a fully automated test grid, depending on what you are up to.
9A non extensive list of functionality is:
10
11* A body of code to run tests on the device under test.  In this setup, test
12  logic executes on the machine being tested, and results are written to files
13  for later collection from a development machine or lab infrastructure.
14
15* A body of code to run tests against a remote device under test.  In this
16  setup, test logic executes on a development machine or piece of lab
17  infrastructure, and the device under test is controlled remotely via
18  SSH/adb/some combination of the above.
19
20* Developer tools to execute one or more tests.  `test_that` for ChromeOS and
21  `test_droid` for Android allow developers to run tests against a device
22  connected to their development machine on their desk.  These tools are written
23  so that the same test logic that runs in the lab will run at their desk,
24  reducing the number of configurations under which tests are run.
25
26* Lab infrastructure to automate the running of tests.  This infrastructure is
27  capable of managing and running tests against thousands of devices in various
28  lab environments. This includes code for both synchronous and asynchronous
29  scheduling of tests.  Tests are run against this hardware daily to validate
30  every build of ChromeOS.
31
32* Infrastructure to set up miniature replicas of a full lab.  A full lab does
33  entail a certain amount of administrative work which isn't appropriate for
34  a work group interested in automated tests against a small set of devices.
35  Since this scale is common during device bringup, a special setup, called
36  Moblab, allows a natural progressing from desk -> mini lab -> full lab.
37
38## Run some autotests
39
40See the guides to `test_that` and `test_droid`:
41
42[test\_droid Basic Usage](docs/test-droid.md)
43
44[test\_that Basic Usage](docs/test-that.md)
45
46## Write some autotests
47
48See the best practices guide, existing tests, and comments in the code.
49
50[Autotest Best Practices](docs/best-practices.md)
51
52
53## Grabbing the latest source
54
55`git clone https://chromium.googlesource.com/chromiumos/third_party/autotest`
56
57## Hacking and submitting patches
58
59See the coding style guide for guidance on submitting patches.
60
61[Coding Style](docs/coding-style.md)
62
63## Pre-upload hook dependencies
64
65You need to run `utils/build_externals.py` to set up the dependencies
66for pre-upload hook tests.
67
68## Setting up Lucifer
69
70[Setting up Lucifer](docs/lucifer-setup.md)
71