diff options
| author | 2024-05-01 21:45:26 +0000 | |
|---|---|---|
| committer | 2024-05-01 21:45:26 +0000 | |
| commit | 3ae783023466333313ccff372f875a37b810e21d (patch) | |
| tree | 8879ac55608391e97629101fefced339b1f5bd30 | |
| parent | 7046d9679afb8fb800502e3034b40e7cf958f5d6 (diff) | |
| parent | 96221f36725d5c16e33f2dd29a0df027336efe6c (diff) | |
Merge "Fix test-suite for test_module_configs" into main am: 04e21b3acc am: 96221f3672
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3068126
Change-Id: If8e9eecc85738d765cd089f053ae2d905c1a77a2
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | services/tests/servicestests/Android.bp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/services/tests/servicestests/Android.bp b/services/tests/servicestests/Android.bp index 94a71be845a2..753db125ffe3 100644 --- a/services/tests/servicestests/Android.bp +++ b/services/tests/servicestests/Android.bp @@ -279,7 +279,7 @@ FLAKY_AND_IGNORED = [ test_module_config { name: "FrameworksServicesTests_contentprotection", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.contentprotection"], exclude_annotations: FLAKY_AND_IGNORED, } @@ -287,7 +287,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_om", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.om."], exclude_annotations: FLAKY_AND_IGNORED, } @@ -296,7 +296,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_contexthub_presubmit", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.location.contexthub."], // TODO(ron): are these right, does it run anything? include_annotations: ["android.platform.test.annotations.Presubmit"], @@ -306,7 +306,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_contexthub_postsubmit", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.location.contexthub."], // TODO(ron): are these right, does it run anything? include_annotations: ["android.platform.test.annotations.Postsubmit"], @@ -317,7 +317,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_contentcapture", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.contentcapture"], exclude_annotations: FLAKY_AND_IGNORED, } @@ -325,7 +325,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_recoverysystem", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.recoverysystem."], exclude_annotations: ["androidx.test.filters.FlakyTest"], } @@ -334,7 +334,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_pm_presubmit", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_annotations: ["android.platform.test.annotations.Presubmit"], include_filters: ["com.android.server.pm."], exclude_annotations: FLAKY_AND_IGNORED, @@ -343,7 +343,7 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_pm_postsubmit", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_annotations: ["android.platform.test.annotations.Postsubmit"], include_filters: ["com.android.server.pm."], exclude_annotations: FLAKY_AND_IGNORED, @@ -353,6 +353,6 @@ test_module_config { test_module_config { name: "FrameworksServicesTests_os", base: "FrameworksServicesTests", - test_suites: ["general-tests"], + test_suites: ["device-tests"], include_filters: ["com.android.server.os."], } |