diff options
| author | 2023-08-14 15:29:06 +0000 | |
|---|---|---|
| committer | 2023-08-14 15:29:06 +0000 | |
| commit | 13073aedd962703649700bdb25ee1dc0058d2235 (patch) | |
| tree | b22434d2500cf6ec83b07a275f1e452c6266f821 | |
| parent | 868ff20d60b5082c43ff6a36340a1ffdc1974c2b (diff) | |
| parent | a2ff330e41e797f6126f27dfceb324d99654080b (diff) | |
Merge "Add CtsTextTestCases everywhere" into main
| -rw-r--r-- | core/java/android/text/TEST_MAPPING | 15 | ||||
| -rw-r--r-- | core/java/android/widget/TEST_MAPPING | 11 | ||||
| -rw-r--r-- | graphics/TEST_MAPPING | 12 | ||||
| -rw-r--r-- | graphics/java/android/graphics/TEST_MAPPING | 21 | ||||
| -rw-r--r-- | graphics/java/android/graphics/fonts/TEST_MAPPING | 15 | ||||
| -rw-r--r-- | graphics/java/android/graphics/text/TEST_MAPPING | 15 |
6 files changed, 89 insertions, 0 deletions
diff --git a/core/java/android/text/TEST_MAPPING b/core/java/android/text/TEST_MAPPING new file mode 100644 index 000000000000..0fe974afd15c --- /dev/null +++ b/core/java/android/text/TEST_MAPPING @@ -0,0 +1,15 @@ +{ + "presubmit": [ + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "android.platform.test.annotations.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ] + } + ] +} diff --git a/core/java/android/widget/TEST_MAPPING b/core/java/android/widget/TEST_MAPPING index 107cac2825ac..bc71bee33d06 100644 --- a/core/java/android/widget/TEST_MAPPING +++ b/core/java/android/widget/TEST_MAPPING @@ -45,6 +45,17 @@ "exclude-annotation": "android.platform.test.annotations.AppModeFull" } ] + }, + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "androidx.test.filters.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ] } ] } diff --git a/graphics/TEST_MAPPING b/graphics/TEST_MAPPING index abeaf1996ca7..8afc30d54a53 100644 --- a/graphics/TEST_MAPPING +++ b/graphics/TEST_MAPPING @@ -7,6 +7,18 @@ "exclude-annotation": "androidx.test.filters.FlakyTest" } ] + }, + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "androidx.test.filters.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ], + "file_patterns": ["(/|^)Typeface\\.java", "(/|^)Paint\\.java"] } ] } diff --git a/graphics/java/android/graphics/TEST_MAPPING b/graphics/java/android/graphics/TEST_MAPPING new file mode 100644 index 000000000000..df912222909a --- /dev/null +++ b/graphics/java/android/graphics/TEST_MAPPING @@ -0,0 +1,21 @@ +{ + "presubmit": [ + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "androidx.test.filters.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ], + "file_patterns": [ + "Typeface\\.java", + "Paint\\.java", + "[^/]*Canvas\\.java", + "[^/]*Font[^/]*\\.java" + ] + } + ] +} diff --git a/graphics/java/android/graphics/fonts/TEST_MAPPING b/graphics/java/android/graphics/fonts/TEST_MAPPING new file mode 100644 index 000000000000..99cbfe720c05 --- /dev/null +++ b/graphics/java/android/graphics/fonts/TEST_MAPPING @@ -0,0 +1,15 @@ +{ + "presubmit": [ + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "androidx.test.filters.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ] + } + ] +} diff --git a/graphics/java/android/graphics/text/TEST_MAPPING b/graphics/java/android/graphics/text/TEST_MAPPING new file mode 100644 index 000000000000..99cbfe720c05 --- /dev/null +++ b/graphics/java/android/graphics/text/TEST_MAPPING @@ -0,0 +1,15 @@ +{ + "presubmit": [ + { + "name": "CtsTextTestCases", + "options": [ + { + "exclude-annotation": "androidx.test.filters.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.LargeTest" + } + ] + } + ] +} |