diff options
author | 2023-12-21 03:58:38 +0000 | |
---|---|---|
committer | 2023-12-21 13:39:22 +0000 | |
commit | 4a059361efea5ef4fff11d44e8c2453d39499bad (patch) | |
tree | 4fe76da205022555c673fa5bfddd7a36625a3f38 | |
parent | a4fd8bb141fdb877bfd0d69700dad4e2859634a7 (diff) |
Add mcts tag to MainlineCTS ART test modules.
Bug: 316436957
Change-Id: I7db6cf4f06ba77daf8f2e3be532a9bbda7f14667
-rw-r--r-- | dex2oat/Android.bp | 5 | ||||
-rw-r--r-- | libartpalette/Android.bp | 5 | ||||
-rw-r--r-- | libnativebridge/tests/Android.bp | 1 | ||||
-rw-r--r-- | libnativeloader/Android.bp | 1 | ||||
-rw-r--r-- | test/018-stack-overflow/Android.bp | 5 | ||||
-rw-r--r-- | test/048-reflect-v8/Android.bp | 5 |
6 files changed, 18 insertions, 4 deletions
diff --git a/dex2oat/Android.bp b/dex2oat/Android.bp index 88cbc6e43b..7da21ea8c9 100644 --- a/dex2oat/Android.bp +++ b/dex2oat/Android.bp @@ -550,5 +550,8 @@ art_cc_test { ":generate-boot-image", ], test_config: "art_standalone_dex2oat_cts_tests.xml", - test_suites: ["cts"], + test_suites: [ + "cts", + "mcts-art", + ], } diff --git a/libartpalette/Android.bp b/libartpalette/Android.bp index 1302315f8d..c687a88f6e 100644 --- a/libartpalette/Android.bp +++ b/libartpalette/Android.bp @@ -141,5 +141,8 @@ art_cc_test { "art_libartpalette_tests_defaults", ], test_config_template: ":art-gtests-target-standalone-cts-template", - test_suites: ["cts"], + test_suites: [ + "cts", + "mcts-art", + ], } diff --git a/libnativebridge/tests/Android.bp b/libnativebridge/tests/Android.bp index f98fadc42d..24b8f3a668 100644 --- a/libnativebridge/tests/Android.bp +++ b/libnativebridge/tests/Android.bp @@ -203,6 +203,7 @@ cc_test { "cts", "general-tests", "mts-art", + "mcts-art", ], } diff --git a/libnativeloader/Android.bp b/libnativeloader/Android.bp index 96f56775f6..16449ac745 100644 --- a/libnativeloader/Android.bp +++ b/libnativeloader/Android.bp @@ -183,6 +183,7 @@ art_cc_test { test_suites: [ "cts", "mts-art", + "mcts-art", ], } diff --git a/test/018-stack-overflow/Android.bp b/test/018-stack-overflow/Android.bp index ef817a8099..29ba5eafe3 100644 --- a/test/018-stack-overflow/Android.bp +++ b/test/018-stack-overflow/Android.bp @@ -21,7 +21,10 @@ java_test { ":art-run-test-018-stack-overflow-expected-stdout", ":art-run-test-018-stack-overflow-expected-stderr", ], - test_suites: ["cts"], + test_suites: [ + "cts", + "mcts-art", + ], } // Test's expected standard output. diff --git a/test/048-reflect-v8/Android.bp b/test/048-reflect-v8/Android.bp index f43f4b02d6..3b279bf0f8 100644 --- a/test/048-reflect-v8/Android.bp +++ b/test/048-reflect-v8/Android.bp @@ -21,7 +21,10 @@ java_test { ":art-run-test-048-reflect-v8-expected-stdout", ":art-run-test-048-reflect-v8-expected-stderr", ], - test_suites: ["cts"], + test_suites: [ + "cts", + "mcts-art", + ], } // Test's expected standard output. |