summaryrefslogtreecommitdiff
path: root/tests/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Android.bp')
-rw-r--r--tests/Android.bp15
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/Android.bp b/tests/Android.bp
index 482efca..e162dfb 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -14,11 +14,6 @@
// limitations under the License.
//
-filegroup {
- name: "boot_tests_cpp",
- srcs: [ "boot_tests.cpp" ],
-}
-
cc_defaults {
name: "gsi_boot_defaults",
shared_libs: [
@@ -35,7 +30,7 @@ cc_defaults {
"android.hardware.weaver@1.0",
],
srcs: [
- ":boot_tests_cpp",
+ "boot_tests.cpp",
],
}
@@ -44,6 +39,14 @@ cc_test {
defaults: ["gsi_boot_defaults"],
}
+cc_test {
+ name: "vts_gsi_boot_test",
+ defaults: ["gsi_boot_defaults"],
+ test_suites: ["vts-core"],
+ auto_gen_config: true,
+ test_min_api_level: 29,
+}
+
java_test_host {
name: "DSUEndtoEndTest",
srcs: ["DSUEndtoEndTest.java"],