An example of mainline testing in Test Mapping Suite.

This is an example to run mainline test in Test Mapping Suite.
This change shows you how to configure the Android.bp if the test
config is auto generated.

Bug: 158958526
Test: forrest.
Change-Id: Icf3c86ece842182640857788276fd0f5f5819a2d
diff --git a/tests/example/native/Android.bp b/tests/example/native/Android.bp
index 69b503b..f871cdb 100644
--- a/tests/example/native/Android.bp
+++ b/tests/example/native/Android.bp
@@ -15,12 +15,17 @@
 cc_test {
     name: "hello_world_test",
     srcs: ["HelloWorldTest.cpp"],
+    // TODO (b/158958526): This is an example of mainline testing in Test
+    // Mapping Suite. Will remove this after everything is proven working.
+    test_mainline_modules: [
+        "com.google.android.cellbroadcast.apex"
+    ],
 
     cflags: [
         "-Wall",
         "-Werror",
     ],
 
-    test_suites: ["device-tests"],
+    test_suites: ["general-tests"],
     host_supported: true,
 }