• Home
Name Date Size #Lines LOC

..--

apache/07-May-2024-434354

cli/07-May-2024-10,9588,818

client/07-May-2024-1,003,212909,371

contrib/07-May-2024-5,7674,198

database/07-May-2024-2,8741,976

docs/07-May-2024-927683

frontend/07-May-2024-46,95736,150

logs/07-May-2024-21

packages/07-May-2024-32

puppylab/07-May-2024-905659

results/07-May-2024-94

scheduler/07-May-2024-19,13313,632

server/07-May-2024-149,173113,386

site_utils/07-May-2024-46,70033,983

test_suites/07-May-2024-5,9904,838

tko/07-May-2024-11,9359,126

utils/07-May-2024-5,6934,205

.gitignoreD07-May-20241.3 KiB7565

.quickmerge_sentinelD07-May-20240

COMMIT-QUEUE.iniD07-May-2024267 117

LGPL_LICENSED07-May-20247.5 KiB166128

LICENSED07-May-202417.8 KiB348285

MODULE_LICENSE_LGPLD07-May-20247.5 KiB166128

NOTICED07-May-202417.8 KiB348285

PRESUBMIT.cfgD07-May-2024755 1815

READMED07-May-20243 KiB8454

__init__.pyD07-May-20240 10

common.pyD07-May-2024308 98

global_config.iniD07-May-202414.2 KiB385337

metadata.chromiumD07-May-2024319 87

moblab_config.iniD07-May-2024541 1613

ssp_deploy_config.jsonD07-May-2024590 2726

suite_scheduler.iniD07-May-202415.2 KiB975847

README

1Autotest: Fully automated tests under the linux platform
2--------------------------------------------------------
3
4Autotest is a framework for fully automated testing. It is designed primarily to
5test the Linux kernel, though it is useful for many other functions such as
6qualifying new hardware. It's an open-source project under the GPL and is used
7and developed by a number of organizations, including Google, IBM, Red Hat, and
8many others.
9
10Autotest is composed of a number of modules that will help you to do stand alone
11tests or setup a fully automated test grid, depending on what you are up to.
12A non extensive list of modules is:
13
14* Autotest client: The engine that executes the tests (dir client). Each
15autotest test is a a directory inside (client/tests) and it is represented
16by a python class that implements a minimum number of methods. The client
17is what you need if you are a single developer trying out autotest and executing
18some tests. Autotest client executes ''client side control files'', which are
19regular python programs, and leverage the API of the client.
20
21* Autotest server: A program that copies the client to remote machines and
22controls their execution. Autotest server executes ''server side control files'',
23which are also regular python programs, but leverage a higher level API, since
24the autotest server can control test execution in multiple machines. If you
25want to perform tests slightly more complex involving more than one machine you
26might want the autotest server
27
28* Autotest database: For test grids, we need a way to store test results, and
29that is the purpose of the database component. This DB is used by the autotest
30scheduler and the frontends to store and visualize test results.
31
32* Autotest scheduler: For test grids, we need an utility that can schedule and
33trigger job execution in test machines, the autotest scheduler is that utility.
34
35* Autotest web frontend: For test grids, A web app, whose backend is written in
36django (http://www.djangoproject.com/) and UI written in gwt
37(http://code.google.com/webtoolkit/), lets users to trigger jobs and visualize
38test results
39
40* Autotest command line interface: Alternatively, users also can use the
41autotest CLI, written in python
42
43
44Getting started with autotest client
45------------------------------------
46
47For the impatient:
48
49http://autotest.kernel.org/wiki/QuickStart
50
51
52Check out the main project documentation source
53-----------------------------------------------
54
55You can find plenty of information on the autotest wiki
56
57http://autotest.kernel.org/
58
59That also contains references to the project activity
60
61http://autotest.kernel.org/timeline
62
63Links to an online view of the version control system
64
65http://autotest.kernel.org/browser
66
67
68Grabbing the latest source
69--------------------------
70
71http://autotest.kernel.org/wiki/DownloadSource
72
73
74Hacking and submitting patches
75------------------------------
76
77http://autotest.kernel.org/wiki/SubmissionChecklist
78
79
80Downloading stable versions
81---------------------------
82
83http://autotest.kernel.org/wiki/Download
84