summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2023-07-31 15:51:12 +0100
committer Roland Levillain <rpl@google.com> 2023-08-01 17:29:57 +0000
commit7814249ad922b49344d60a05e396d07390fcf7f9 (patch)
tree936e216d12c7232ca97b1a0e05814aeb1f6aa6db
parente36fdbfbbce2dd6dbb69a9b08a63db703872bfac (diff)
Remove file `test/art-gtests-target-standalone-root-template.xml`.
This test configuration template is no longer used by any test. Test: m mts Change-Id: Ib8d747a7641852f8c089bf974718177453785d2b
-rw-r--r--test/Android.bp7
-rw-r--r--test/art-gtests-target-standalone-root-template.xml44
2 files changed, 0 insertions, 51 deletions
diff --git a/test/Android.bp b/test/Android.bp
index c4dda2ac8d..74abf7bebb 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -153,13 +153,6 @@ filegroup {
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 {
- name: "art-gtests-target-standalone-root-template",
- srcs: ["art-gtests-target-standalone-root-template.xml"],
-}
-
// Test configuration template for standalone ART gtests run with a boot image on target (not
// bundled with the ART APEX).
filegroup {
diff --git a/test/art-gtests-target-standalone-root-template.xml b/test/art-gtests-target-standalone-root-template.xml
deleted file mode 100644
index d1a489ede8..0000000000
--- a/test/art-gtests-target-standalone-root-template.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?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} as root.">
- <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer"/>
-
- <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>
-
- <!-- Only run tests if the device under test is SDK version 31 (Android 12) or above. -->
- <object type="module_controller" class="com.android.tradefed.testtype.suite.module.Sdk31ModuleController" />
-</configuration>