Project: /_project.yaml Book: /_book.yaml
{% include “_versions.html” %}
Atest is a command line tool that allows users to build, install, and run Android tests locally, greatly speeding test re-runs without requiring knowledge of Trade Federation test harness command line options. This page explains how to use Atest to run Android tests.
For general information on writing tests for Android, see Android Platform Testing.
For information on the overall structure of Atest, see Atest Developer Guide{: .external}.
And to add a feature to Atest, follow Atest Developer Workflow{: .external}.
To run Atest, follow the steps in the sections below to set up your environment.
Set test_suite for Soong or LOCAL_COMPATIBILITY_SUITE for Make per Packaging build script rules.
From the root of the Android source checkout, run:
Run the $ lunch
command to bring up a menu of supported devices. Find the device and run that command.
For example, if you have an ARM device connected, run the following command:
This sets various environment variables required for running Atest and adds the Atest command to your $PATH
.
Atest commands take the following form:
You can use the following optional arguments with Atest commands.
Option | Long option | Description |
---|---|---|
-b | --build | Builds test targets. |
-i | --install | Installs test artifacts (APKs) on |
: : : device. : | ||
-t | --test | Runs the tests. |
-s | --serial | Runs the tests on the specified device. |
: : : One device can be tested at a time. : | ||
-d | --disable-teardown | Disables test teardown and cleanup. |
--info | Shows the relevant info of the specified | |
: : : targets and exits. : | ||
--dry-run | A synonym of --info. | |
-m | --rebuild-module-info | Forces a rebuild of the module-info.json |
: : : file. : | ||
-w | --wait-for-debugger | Waits for debugger prior to execution. |
: : : Only for instrumentation tests. : | ||
-v | --verbose | Displays DEBUG level logging. |
--generate-baseline | Generates baseline metrics, runs 5 | |
: : : iterations by default. : | ||
--generate-new-metrics | Generates new metrics, run 5 iterations | |
: : : by default. : | ||
--detect-regression | Runs regression detection algorithm. | |
--[CUSTOM_ARGS] | Specifies custom args for the test | |
: : : runners. : | ||
-a | --all-abi | Runs the tests for all available device |
: : : architectures. : | ||
-h | --help | Shows help message and exits. |
--host | Runs the test completely on the host | |
: : : without a device. (Note: Running a : | ||
: : : host test that requires a device with : | ||
: : : --host will fail.) : |
For more information on -b
, -i
and -t
, see Specifying steps: build, install, or run.
You can run one or more tests using test-to-run. To run multiple tests, separate test references with spaces. For example:
Here are some examples:
For more information on how to reference a test, see Identifying tests.
You can specify the test-to-run argument with the test's module name, Module:Class, class name, TF integration test, file path or package name.
To run an entire test module, use its module name. Input the name as it appears in the LOCAL_MODULE
or LOCAL_PACKAGE_NAME
variables in that test's Android.mk
or Android.bp
file.
Note: Use TF Integration Test to run non-module tests integrated directly into TradeFed.
Examples:
To run a single class within a module, use Module:Class. Module is the same as described in Module name. Class is the name of the test class in the .java
file and can be the fully qualified class name or the basic name.
Examples:
To run a single class without explicitly stating a module name, use the class name.
Examples:
Using the Module:Class reference is recommended whenever possible since Atest requires more time to search the complete source tree for potential matches if no module is stated.
Examples (ordered from fastest to slowest):
To run tests that are integrated directly into TradeFed (non-modules), input the name as it appears in the output of the tradefed.sh list configs
command. For example:
To run the reboot.xml
test{: .external}:
To run the native-benchmark.xml
test{: .external}:
You can run both module-based tests and integration-based tests by inputting the path to their test file or directory as appropriate. You can also run a single class by specifying the path to the class's Java file. Both relative and absolute paths are supported.
Example: Two ways to run the CtsJankDeviceTestCases
module via path
Run module from android repo-root:
From android repo-root/cts/tests/jank:
Example: Run a specific class within CtsJankDeviceTestCases
module via path. From android repo-root:
Example: Run an integration test via path. From android repo-root:
Atest supports searching tests by package name.
Examples:
You can specify which steps to run by using the -b
, -i
, and -t
options. If you don't specify an option, then all steps run.
Note: You can run -b
and -t
alone, but -i
needs -t
to run.
Atest can force a test to skip the cleanup/teardown step. Many tests, such as CTS, clean up the device after the test is run, so trying to rerun your test with -t
will fail without the --disable-teardown
parameter. Use -d
before -t
to skip the test clean up step and test iteratively.
Note: -t
disables both setup/install and teardown/cleanup of the device so you can rerun your test with atest -t test-to-run as many times as you want.
You can run specific methods within a test class. Although the whole module needs to be built, this reduces the time needed to run the tests. To run specific methods, identify the class using any of the ways supported for identifying a class (Module:Class, file path, etc) and append the name of the method.
You can specify multiple methods with commas.
Examples:
The following two examples show the preferred ways to run a single method, testFlagChange
. These examples are preferred over only using the class name because specifying the module or the Java file location allows Atest to find the test much faster:
Using Module:Class
From android repo-root
Multiple methods can be run from different classes and modules:
To run multiple classes, separate them with spaces in the same way as running multiple tests. Atest builds and runs classes efficiently, so specifying a subset of classes in a module improves performance over running the whole module.
Examples:
Two classes in the same module:
Two classes in different modules:
Atest can run native tests.
Examples:
Input tests:
Use -a
to run the tests for all available device architectures, which in this example is armeabi-v7a (ARM 32-bit) and arm64-v8a (ARM 64-bit).
You can generate pre-patch or post-patch metrics without running regression detection. You can specify the number of iterations, but the default is five.
Examples:
Local regression detection can be run in three options:
Generate baseline (pre-patch) metrics and place them in a folder. Atest runs the tests through the specified iterations, generates post-patch metrics, and compares those against existing metrics.
Example:
Using a folder containing previously generated post-patch metrics, Atest runs the tests n iterations, generates a new set of pre-patch metrics, and compares those against those provided.
Note: The developer needs to revert the device/tests to pre-patch state to generate baseline metrics.
Example:
Using two folders containing both pre-patch and post-patch metrics, Atest runs the regression detection algorithm without any tests.
Example: