aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/test.py')
-rw-r--r--infra/bots/recipes/test.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index 4acf2ae843..fb893781b1 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -138,6 +138,10 @@ def dm_flags(bot):
# Just run GLES for now - maybe add gles_msaa4 in the future
configs = ['gles']
+ if 'Ci20' in bot:
+ # This bot is really slow, cut it down to just 8888.
+ configs = ['8888']
+
args.append('--config')
args.extend(configs)
@@ -499,6 +503,13 @@ def dm_flags(bot):
if 'IntelBayTrail' in bot and 'Ubuntu' in bot:
match.append('~ImageStorageLoad') # skia:6358
+ if 'Ci20' in bot:
+ match.append('~Codec_Dimensions') # skia:6477
+ match.append('~FontMgrAndroidParser') # skia:6478
+ match.append('~PathOpsSimplify') # skia:6479
+ blacklist(['_', 'gm', '_', 'fast_slow_blurimagefilter']) # skia:6480
+
+
if blacklisted:
args.append('--blacklist')
args.extend(blacklisted)
@@ -702,6 +713,7 @@ def RunSteps(api):
TEST_BUILDERS = [
'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Release-GN_Android',
'Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-GN_Android',
+ 'Test-Android-Clang-Ci20-CPU-IngenicJZ4780-mipsel-Release-Android',
'Test-Android-Clang-GalaxyJ5-GPU-Adreno306-arm-Release-Android',
'Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-Android',
'Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-Android',
@@ -766,7 +778,7 @@ def GenTests(api):
)
)
if 'Trybot' in builder:
- test += api.properties(patch_storage='gerrit')
+ test += api.properties(patch_storage='gerrit')
test += api.properties.tryserver(
buildername=builder,
gerrit_project='skia',