From 88db6114985ebcfe14f592930d82d01a3d973101 Mon Sep 17 00:00:00 2001 From: Su Hong Koo Date: Thu, 1 Aug 2024 10:08:08 -0400 Subject: [PATCH] tests: Make modetest and proptest cc_binary in Android.bp Change module type of modetest and proptest from cc_test to cc_binary, as neither are tests. Signed-off-by: Su Hong Koo --- tests/modetest/Android.bp | 2 +- tests/proptest/Android.bp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modetest/Android.bp b/tests/modetest/Android.bp index ca811fee..02688da2 100644 --- a/tests/modetest/Android.bp +++ b/tests/modetest/Android.bp @@ -1,6 +1,6 @@ build = ["Android.sources.bp"] -cc_test { +cc_binary { name: "modetest", defaults: [ "libdrm_defaults", diff --git a/tests/proptest/Android.bp b/tests/proptest/Android.bp index 28c87e91..379e08c1 100644 --- a/tests/proptest/Android.bp +++ b/tests/proptest/Android.bp @@ -1,4 +1,4 @@ -cc_test { +cc_binary { name: "proptest", defaults: ["libdrm_defaults"], srcs: ["proptest.c"],