Add `art_standalone_libartpalette_tests` to CTS.
Test: m cts \
&& cts-tradefed run commandAndExit cts \
--module art_standalone_libartpalette_tests
Bug: 206657939
Bug: 162834439
Change-Id: If9c72b05156c841d8eb8a1c5ab3b925fc0e8d588
diff --git a/libartpalette/Android.bp b/libartpalette/Android.bp
index 19d12c7..51a9dab 100644
--- a/libartpalette/Android.bp
+++ b/libartpalette/Android.bp
@@ -144,4 +144,6 @@
"art_standalone_gtest_defaults",
"art_libartpalette_tests_defaults",
],
+ test_config_template: ":art-gtests-target-standalone-cts-template",
+ test_suites: ["cts"],
}
diff --git a/test/Android.bp b/test/Android.bp
index 85517e2..565c69f 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -136,6 +136,13 @@
srcs: ["art-gtests-target-standalone-template.xml"],
}
+// Test configuration template for standalone ART gtests on target (not bundled with the ART APEX)
+// which are part of CTS.
+filegroup {
+ name: "art-gtests-target-standalone-cts-template",
+ srcs: ["art-gtests-target-standalone-cts-template.xml"],
+}
+
// Test configuration template for standalone ART gtests run as root on target (not bundled with
// the ART APEX).
filegroup {
diff --git a/test/art-gtests-target-standalone-cts-template.xml b/test/art-gtests-target-standalone-cts-template.xml
new file mode 100644
index 0000000..6f1e5e7
--- /dev/null
+++ b/test/art-gtests-target-standalone-cts-template.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2021 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- Note: This test config file for {MODULE} is generated from a template. -->
+<configuration description="Runs {MODULE}.">
+ <option name="test-suite-tag" value="cts" />
+ <option name="config-descriptor:metadata" key="component" value="art" />
+ <option name="config-descriptor:metadata" key="parameter" value="not_instant_app" />
+ <option name="config-descriptor:metadata" key="parameter" value="multi_abi" />
+ <option name="config-descriptor:metadata" key="parameter" value="secondary_user" />
+
+ <target_preparer class="com.android.compatibility.common.tradefed.targetprep.FilePusher">
+ <option name="cleanup" value="true" />
+ <option name="push" value="{MODULE}->/data/local/tmp/{MODULE}/{MODULE}" />
+ <option name="append-bitness" value="true" />
+ </target_preparer>
+
+ <test class="com.android.tradefed.testtype.GTest" >
+ <option name="native-test-device-path" value="/data/local/tmp/{MODULE}" />
+ <option name="module-name" value="{MODULE}" />
+ <option name="ld-library-path-32" value="/apex/com.android.art/lib" />
+ <option name="ld-library-path-64" value="/apex/com.android.art/lib64" />
+ </test>
+
+ <!-- When this test is run in a Mainline context (e.g. with `mts-tradefed`), only enable it if
+ one of the Mainline modules below is present on the device used for testing. -->
+ <object type="module_controller" class="com.android.tradefed.testtype.suite.module.MainlineTestModuleController">
+ <!-- ART Mainline Module (internal version). -->
+ <option name="mainline-module-package-name" value="com.google.android.art" />
+ <!-- ART Mainline Module (external (AOSP) version). -->
+ <option name="mainline-module-package-name" value="com.android.art" />
+ </object>
+</configuration>