diff options
author | 2023-07-28 22:52:23 +0000 | |
---|---|---|
committer | 2023-07-28 22:52:23 +0000 | |
commit | 4a7f9956295961dcdfbbf2e518001b9fd292d2c2 (patch) | |
tree | 9928ca9f5d0e3fcf8a297c375229fdff2094c804 /TEST_MAPPING | |
parent | 4a887da452a9a7e04704742ca1f093dbb0768c5a (diff) |
Fix the @RunOnlyOnPostsubmit annotation
Fixing the @RunOnlyOnPostsubmit annotation by adding @Retention and @Target annotations to it and changing the package name in TEST_MAPPING
Test: presubmit
Bug: n/a
Change-Id: If9f5f9c655ec57a904e528a233d64984123bef04
Diffstat (limited to 'TEST_MAPPING')
-rw-r--r-- | TEST_MAPPING | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TEST_MAPPING b/TEST_MAPPING index effa01b1f..5f4b64bec 100644 --- a/TEST_MAPPING +++ b/TEST_MAPPING @@ -5,7 +5,7 @@ "options": [ { // Ignore the tests with @RunOnlyOnPostsubmit annotation - "exclude-annotation": "com.android.providers.media.annotation.RunOnlyOnPostsubmit" + "exclude-annotation": "com.android.providers.media.library.RunOnlyOnPostsubmit" } ] }, @@ -28,7 +28,7 @@ "options": [ { // Ignore the tests with @RunOnlyOnPostsubmit annotation - "exclude-annotation": "com.android.providers.media.annotation.RunOnlyOnPostsubmit" + "exclude-annotation": "com.android.providers.media.library.RunOnlyOnPostsubmit" } ] }, @@ -93,7 +93,7 @@ "options": [ { // Only execute the tests with @RunOnlyOnPostsubmit annotation - "include-annotation": "com.android.providers.media.annotation.RunOnlyOnPostsubmit" + "include-annotation": "com.android.providers.media.library.RunOnlyOnPostsubmit" } ] } @@ -104,7 +104,7 @@ "options": [ { // Only execute the tests with @RunOnlyOnPostsubmit annotation - "include-annotation": "com.android.providers.media.annotation.RunOnlyOnPostsubmit" + "include-annotation": "com.android.providers.media.library.RunOnlyOnPostsubmit" } ] }, |