diff options
author | 2024-08-09 18:52:20 +0100 | |
---|---|---|
committer | 2024-08-12 10:32:08 +0000 | |
commit | 6d384196aeec5e6f7313e17c244eb877f990421c (patch) | |
tree | 9aa6e606a618ecb32b4e3e7c992d63a8b0640be1 | |
parent | fd20e55b80bbfaf332f8246aaa7bb9702bcee5f2 (diff) |
Add `art_standalone_dex2oat_cts_tests` to ART Test Mapping and ART MTS.
* In ART Test Mapping, enable this test module in post-submit runs.
* In ART MTS, add this test module to shard 00 (along with other ART
* gtests).
Output of `art/test/utils/regen-test-files`:
$ art/test/utils/regen-test-files
Generated Blueprint files for 744 ART run-tests out of 1040 (71%).
Generated TEST_MAPPING entries for 462 ART run-tests out of 1040 (44%):
460 ART run-tests (99%) in `art-mainline-presubmit` test group.
460 ART run-tests (99%) in `mainline-presubmit` test group.
460 ART run-tests (99%) in `presubmit` test group.
2 ART run-tests (0%) in `postsubmit` test group.
24 ART gtests (96%) in `mainline-presubmit` test group.
24 ART gtests (96%) in `presubmit` test group.
1 ART gtests (4%) in `presubmit` test group.
Note: Tests in `*presubmit` test groups are executed in pre- and
post-submit test runs. Tests in the `postsubmit` test group
are only executed in post-submit test runs.
Test: atest --test-mapping art:postsubmit
Test: m mts && mts-tradefed run commandAndExit mts-art
Test: m mts && mts-tradefed run commandAndExit mts-art-shard-03
Test: m mts \
&& mts-tradefed run commandAndExit mts-art \
--module art_standalone_dex2oat_cts_tests
Bug: 167385698
Change-Id: I96029369a1383dec2f98412abae630b94f1edcb8
-rw-r--r-- | TEST_MAPPING | 3 | ||||
-rwxr-xr-x | test/utils/regen-test-files | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/TEST_MAPPING b/TEST_MAPPING index f09dc685e2..6966c67078 100644 --- a/TEST_MAPPING +++ b/TEST_MAPPING @@ -5871,6 +5871,9 @@ }, { "name": "art-run-test-2279-second-inner-loop-references-first" + }, + { + "name": "art_standalone_dex2oat_cts_tests" } ] } diff --git a/test/utils/regen-test-files b/test/utils/regen-test-files index 0f1dbf5232..ee3fe17daf 100755 --- a/test/utils/regen-test-files +++ b/test/utils/regen-test-files @@ -254,6 +254,7 @@ art_gtest_user_module_names = [ "art_standalone_artd_tests", "art_standalone_cmdline_tests", "art_standalone_compiler_tests", + "art_standalone_dex2oat_cts_tests", "art_standalone_dex2oat_tests", "art_standalone_dexdump_tests", "art_standalone_dexlist_tests", @@ -288,6 +289,7 @@ art_gtest_module_names = sorted(art_gtest_user_module_names + art_gtest_eng_only # removing them from this set (in order to promote them to # presubmits). art_gtest_postsubmit_only_module_names = [ + "art_standalone_dex2oat_cts_tests", ] # ART gtests not supported in MTS. |