aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-08-05 05:40:59 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-05 05:40:59 -0700
commite2251acbaa7c099c4a2bac13acbce7274ddde051 (patch)
treed0ff4b53af5189046ad268e27251521faeac4b48 /infra/bots
parentd460a3c256d9bd4a9f4df49b065f887ec35914c1 (diff)
[recipes] Separate builder_spec into compile/test/perf recipes
Diffstat (limited to 'infra/bots')
-rw-r--r--infra/bots/recipe_modules/vars/api.py556
-rw-r--r--infra/bots/recipes/swarm_compile.py151
-rw-r--r--infra/bots/recipes/swarm_perf.py145
-rw-r--r--infra/bots/recipes/swarm_test.py286
4 files changed, 569 insertions, 569 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py
index 50a332e8fb..f717dccbed 100644
--- a/infra/bots/recipe_modules/vars/api.py
+++ b/infra/bots/recipe_modules/vars/api.py
@@ -16,164 +16,6 @@ CONFIG_DEBUG = 'Debug'
CONFIG_RELEASE = 'Release'
-def get_gyp_defines(builder_dict):
- gyp_defs = {}
-
- # skia_arch_type.
- if builder_dict['role'] == 'Build':
- arch = builder_dict['target_arch']
- elif builder_dict['role'] in ('Housekeeper', 'Infra'):
- arch = None
- else:
- arch = builder_dict['arch']
-
- arch_types = {
- 'x86': 'x86',
- 'x86_64': 'x86_64',
- 'Arm7': 'arm',
- 'Arm64': 'arm64',
- 'Mips': 'mips32',
- 'Mips64': 'mips64',
- 'MipsDSP2': 'mips32',
- }
- if arch in arch_types:
- gyp_defs['skia_arch_type'] = arch_types[arch]
-
- # housekeeper: build shared lib.
- if builder_dict['role'] == 'Housekeeper':
- gyp_defs['skia_shared_lib'] = '1'
-
- # skia_gpu.
- if builder_dict.get('cpu_or_gpu') == 'CPU':
- gyp_defs['skia_gpu'] = '0'
-
- # skia_warnings_as_errors.
- werr = False
- if builder_dict['role'] == 'Build':
- if 'Win' in builder_dict.get('os', ''):
- if not ('GDI' in builder_dict.get('extra_config', '') or
- 'Exceptions' in builder_dict.get('extra_config', '')):
- werr = True
- elif ('Mac' in builder_dict.get('os', '') and
- 'Android' in builder_dict.get('extra_config', '')):
- werr = False
- elif 'Fast' in builder_dict.get('extra_config', ''): # pragma: no cover
- # See https://bugs.chromium.org/p/skia/issues/detail?id=5257
- werr = False
- else:
- werr = True
- gyp_defs['skia_warnings_as_errors'] = str(int(werr)) # True/False -> '1'/'0'
-
- # Win debugger.
- if 'Win' in builder_dict.get('os', ''):
- gyp_defs['skia_win_debuggers_path'] = 'c:/DbgHelp'
-
- # Qt SDK (Win).
- if 'Win' in builder_dict.get('os', ''):
- if builder_dict.get('os') == 'Win8':
- gyp_defs['qt_sdk'] = 'C:/Qt/Qt5.1.0/5.1.0/msvc2012_64/'
- else:
- gyp_defs['qt_sdk'] = 'C:/Qt/4.8.5/'
-
- # ANGLE.
- if builder_dict.get('extra_config') == 'ANGLE': # pragma: no cover
- gyp_defs['skia_angle'] = '1'
- if builder_dict.get('os', '') in ('Ubuntu', 'Linux'):
- gyp_defs['use_x11'] = '1'
- gyp_defs['chromeos'] = '0'
-
- # GDI.
- if builder_dict.get('extra_config') == 'GDI': # pragma: no cover
- gyp_defs['skia_gdi'] = '1'
-
- # Build with Exceptions on Windows.
- if ('Win' in builder_dict.get('os', '') and
- builder_dict.get('extra_config') == 'Exceptions'): # pragma: no cover
- gyp_defs['skia_win_exceptions'] = '1'
-
- # iOS.
- if (builder_dict.get('os') == 'iOS' or
- builder_dict.get('extra_config') == 'iOS'):
- gyp_defs['skia_os'] = 'ios'
-
- # Shared library build.
- if builder_dict.get('extra_config') == 'Shared':
- gyp_defs['skia_shared_lib'] = '1'
-
- # Build fastest Skia possible.
- if builder_dict.get('extra_config') == 'Fast': # pragma: no cover
- gyp_defs['skia_fast'] = '1'
-
- # PDF viewer in GM.
- if (builder_dict.get('os') == 'Mac10.8' and
- builder_dict.get('arch') == 'x86_64' and
- builder_dict.get('configuration') == 'Release'): # pragma: no cover
- gyp_defs['skia_run_pdfviewer_in_gm'] = '1'
-
- # Clang.
- if builder_dict.get('compiler') == 'Clang':
- gyp_defs['skia_clang_build'] = '1'
-
- # Valgrind.
- if 'Valgrind' in builder_dict.get('extra_config', ''):
- gyp_defs['skia_release_optimization_level'] = '1'
-
- # Link-time code generation just wastes time on compile-only bots.
- if (builder_dict.get('role') == 'Build' and
- builder_dict.get('compiler') == 'MSVC'):
- gyp_defs['skia_win_ltcg'] = '0'
-
- # Mesa.
- if (builder_dict.get('extra_config') == 'Mesa' or
- builder_dict.get('cpu_or_gpu_value') == 'Mesa'): # pragma: no cover
- gyp_defs['skia_mesa'] = '1'
-
- # skia_use_android_framework_defines.
- if builder_dict.get('extra_config') == 'Android_FrameworkDefs':
- gyp_defs['skia_use_android_framework_defines'] = '1' # pragma: no cover
-
- # Skia dump stats for perf tests and gpu
- if (builder_dict.get('cpu_or_gpu') == 'GPU' and
- builder_dict.get('role') == 'Perf'):
- gyp_defs['skia_dump_stats'] = '1'
-
- # CommandBuffer.
- if builder_dict.get('extra_config') == 'CommandBuffer':
- gyp_defs['skia_command_buffer'] = '1'
-
- # Vulkan.
- if builder_dict.get('extra_config') == 'Vulkan':
- gyp_defs['skia_vulkan'] = '1'
- gyp_defs['skia_vulkan_debug_layers'] = '0'
-
- return gyp_defs
-
-
-def get_extra_env_vars(builder_dict):
- env = {}
- if builder_dict.get('compiler') == 'Clang':
- env['CC'] = '/usr/bin/clang'
- env['CXX'] = '/usr/bin/clang++'
-
- # SKNX_NO_SIMD, SK_USE_DISCARDABLE_SCALEDIMAGECACHE, etc.
- extra_config = builder_dict.get('extra_config', '')
- if extra_config.startswith('SK') and extra_config.isupper():
- env['CPPFLAGS'] = '-D' + extra_config # pragma: no cover
-
- return env
-
-
-def build_targets_from_builder_dict(builder_dict):
- """Return a list of targets to build, depending on the builder type."""
- if builder_dict.get('extra_config') == 'iOS':
- return ['iOSShell']
- if 'SAN' in builder_dict.get('extra_config', ''):
- # 'most' does not compile under MSAN.
- return ['dm', 'nanobench']
- else:
- return ['most']
-
-
def device_cfg(builder_dict):
# Android.
if 'Android' in builder_dict.get('extra_config', ''):
@@ -229,292 +71,10 @@ def product_board(builder_dict):
return None
-def dm_flags(bot):
- args = []
-
- # 32-bit desktop bots tend to run out of memory, because they have relatively
- # far more cores than RAM (e.g. 32 cores, 3G RAM). Hold them back a bit.
- if '-x86-' in bot and not 'NexusPlayer' in bot:
- args.extend('--threads 4'.split(' '))
-
- # These are the canonical configs that we would ideally run on all bots. We
- # may opt out or substitute some below for specific bots
- configs = ['565', '8888', 'gpu', 'gpusrgb', 'pdf']
- # Add in either msaa4 or msaa16 to the canonical set of configs to run
- if 'Android' in bot or 'iOS' in bot:
- configs.append('msaa4')
- else:
- configs.append('msaa16')
-
- # With msaa, the S4 crashes and the NP produces a long error stream when we
- # run with MSAA. The Tegra2 and Tegra3 just don't support it. No record of
- # why we're not running msaa on iOS, probably started with gpu config and just
- # haven't tried.
- if ('GalaxyS4' in bot or
- 'NexusPlayer' in bot or
- 'Tegra3' in bot or
- 'iOS' in bot):
- configs = [x for x in configs if 'msaa' not in x]
-
- # Runs out of memory on Android bots and Daisy. Everyone else seems fine.
- if 'Android' in bot or 'Daisy' in bot:
- configs.remove('pdf')
-
- if '-GCE-' in bot:
- configs.extend(['f16', 'srgb']) # Gamma-correct formats.
- configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture.
-
- if '-TSAN' not in bot:
- if ('TegraK1' in bot or
- 'TegraX1' in bot or
- 'GTX550Ti' in bot or
- 'GTX660' in bot or
- 'GT610' in bot):
- if 'Android' in bot:
- configs.append('nvprdit4')
- else:
- configs.append('nvprdit16')
-
- # We want to test the OpenGL config not the GLES config on the X1
- if 'TegraX1' in bot:
- configs = [x.replace('gpu', 'gl') for x in configs]
- configs = [x.replace('msaa', 'glmsaa') for x in configs]
- configs = [x.replace('nvpr', 'glnvpr') for x in configs]
-
- # NP is running out of RAM when we run all these modes. skia:3255
- if 'NexusPlayer' not in bot:
- configs.extend(mode + '-8888' for mode in
- ['serialize', 'tiles_rt', 'pic'])
-
- if 'ANGLE' in bot: # pragma: no cover
- configs.append('angle')
-
- # We want to run gpudft on atleast the mali 400
- if 'GalaxyS3' in bot:
- configs.append('gpudft')
-
- # Test instanced rendering on a limited number of platforms
- if 'Nexus6' in bot: # pragma: no cover
- configs.append('esinst') # esinst4 isn't working yet on Adreno.
- elif 'TegraX1' in bot:
- # Multisampled instanced configs use nvpr.
- configs = [x.replace('glnvpr', 'glinst') for x in configs]
- configs.append('glinst')
- elif 'MacMini6.2' in bot:
- configs.extend(['glinst', 'glinst16'])
-
- # CommandBuffer bot *only* runs the command_buffer config.
- if 'CommandBuffer' in bot:
- configs = ['commandbuffer']
-
- # Vulkan bot *only* runs the vk config.
- if 'Vulkan' in bot:
- configs = ['vk']
-
- args.append('--config')
- args.extend(configs)
-
- # Run tests, gms, and image decoding tests everywhere.
- args.extend('--src tests gm image colorImage'.split(' '))
-
- if 'GalaxyS' in bot:
- args.extend(('--threads', '0'))
-
- blacklist = []
-
- # TODO: ???
- blacklist.extend('f16 _ _ dstreadshuffle'.split(' '))
- blacklist.extend('f16 image _ _'.split(' '))
- blacklist.extend('srgb image _ _'.split(' '))
- blacklist.extend('gpusrgb image _ _'.split(' '))
-
- if 'Valgrind' in bot:
- # These take 18+ hours to run.
- blacklist.extend('pdf gm _ fontmgr_iter'.split(' '))
- blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' '))
- blacklist.extend('pdf skp _ worldjournal'.split(' '))
- blacklist.extend('pdf skp _ desk_baidu.skp'.split(' '))
- blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' '))
-
- if 'iOS' in bot:
- blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' '))
- blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
-
- if 'Mac' in bot or 'iOS' in bot:
- # CG fails on questionable bmps
- blacklist.extend('_ image gen_platf rgba32abf.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rgb24prof.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rgb24lprof.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 8bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 4bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 32bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 24bpp-pixeldata-cropped.bmp'.split(' '))
-
- # CG has unpredictable behavior on this questionable gif
- # It's probably using uninitialized memory
- blacklist.extend('_ image gen_platf frame_larger_than_image.gif'.split(' '))
-
- # WIC fails on questionable bmps
- if 'Win' in bot:
- blacklist.extend('_ image gen_platf rle8-height-negative.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rle4-height-negative.bmp'.split(' '))
- blacklist.extend('_ image gen_platf pal8os2v2.bmp'.split(' '))
- blacklist.extend('_ image gen_platf pal8os2v2-16.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rgba32abf.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rgb24prof.bmp'.split(' '))
- blacklist.extend('_ image gen_platf rgb24lprof.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 8bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 4bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 32bpp-pixeldata-cropped.bmp'.split(' '))
- blacklist.extend('_ image gen_platf 24bpp-pixeldata-cropped.bmp'.split(' '))
- if 'x86_64' in bot and 'CPU' in bot:
- # This GM triggers a SkSmallAllocator assert.
- blacklist.extend('_ gm _ composeshader_bitmap'.split(' '))
-
- if 'Android' in bot or 'iOS' in bot:
- # This test crashes the N9 (perhaps because of large malloc/frees). It also
- # is fairly slow and not platform-specific. So we just disable it on all of
- # Android and iOS. skia:5438
- blacklist.extend('_ test _ GrShape'.split(' '))
-
- if 'Win8' in bot:
- # bungeman: "Doesn't work on Windows anyway, produces unstable GMs with
- # 'Unexpected error' from DirectWrite"
- blacklist.extend('_ gm _ fontscalerdistortable'.split(' '))
-
- # skia:4095
- bad_serialize_gms = ['bleed_image',
- 'c_gms',
- 'colortype',
- 'colortype_xfermodes',
- 'drawfilter',
- 'fontmgr_bounds_0.75_0',
- 'fontmgr_bounds_1_-0.25',
- 'fontmgr_bounds',
- 'fontmgr_match',
- 'fontmgr_iter']
-
- # skia:5589
- bad_serialize_gms.extend(['bitmapfilters',
- 'bitmapshaders',
- 'bleed',
- 'bleed_alpha_bmp',
- 'bleed_alpha_bmp_shader',
- 'convex_poly_clip',
- 'extractalpha',
- 'filterbitmap_checkerboard_32_32_g8',
- 'filterbitmap_image_mandrill_64',
- 'shadows',
- 'simpleaaclip_aaclip'])
- # skia:5595
- bad_serialize_gms.extend(['composeshader_bitmap',
- 'scaled_tilemodes_npot',
- 'scaled_tilemodes'])
- for test in bad_serialize_gms:
- blacklist.extend(['serialize-8888', 'gm', '_', test])
-
- if 'Mac' not in bot:
- for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']:
- blacklist.extend(['serialize-8888', 'gm', '_', test])
- # It looks like we skip these only for out-of-memory concerns.
- if 'Win' in bot or 'Android' in bot:
- for test in ['verylargebitmap', 'verylarge_picture_image']:
- blacklist.extend(['serialize-8888', 'gm', '_', test])
-
- # skia:4769
- for test in ['drawfilter']:
- blacklist.extend([ 'sp-8888', 'gm', '_', test])
- blacklist.extend([ 'pic-8888', 'gm', '_', test])
- blacklist.extend(['2ndpic-8888', 'gm', '_', test])
- # skia:4703
- for test in ['image-cacherator-from-picture',
- 'image-cacherator-from-raster',
- 'image-cacherator-from-ctable']:
- blacklist.extend([ 'sp-8888', 'gm', '_', test])
- blacklist.extend([ 'pic-8888', 'gm', '_', test])
- blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
- blacklist.extend(['serialize-8888', 'gm', '_', test])
-
- # Extensions for RAW images
- r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
- "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
-
- # skbug.com/4888
- # Blacklist RAW images (and a few large PNGs) on GPU bots
- # until we can resolve failures
- if 'GPU' in bot:
- blacklist.extend('_ image _ interlaced1.png'.split(' '))
- blacklist.extend('_ image _ interlaced2.png'.split(' '))
- blacklist.extend('_ image _ interlaced3.png'.split(' '))
- for raw_ext in r:
- blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
-
- if 'Nexus9' in bot: # pragma: no cover
- for raw_ext in r:
- blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
-
- # Large image that overwhelms older Mac bots
- if 'MacMini4.1-GPU' in bot: # pragma: no cover
- blacklist.extend('_ image _ abnormal.wbmp'.split(' '))
- blacklist.extend(['msaa16', 'gm', '_', 'blurcircles'])
-
- match = []
- if 'Valgrind' in bot: # skia:3021
- match.append('~Threaded')
-
- if 'GalaxyS3' in bot: # skia:1699
- match.append('~WritePixels')
-
- if 'AndroidOne' in bot: # skia:4711
- match.append('~WritePixels') # pragma: no cover
-
- if 'NexusPlayer' in bot: # pragma: no cover
- match.append('~ResourceCache')
-
- if 'Nexus10' in bot: # skia:5509
- match.append('~CopySurface') # pragma: no cover
-
- if 'ANGLE' in bot and 'Debug' in bot: # pragma: no cover
- match.append('~GLPrograms') # skia:4717
-
- if 'MSAN' in bot:
- match.extend(['~Once', '~Shared']) # Not sure what's up with these tests.
-
- if 'TSAN' in bot: # pragma: no cover
- match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots.
-
- if blacklist:
- args.append('--blacklist')
- args.extend(blacklist)
-
- if match:
- args.append('--match')
- args.extend(match)
-
- # These bots run out of memory running RAW codec tests. Do not run them in
- # parallel
- if ('NexusPlayer' in bot or 'Nexus5' in bot or 'Nexus9' in bot
- or 'Win8-MSVC-ShuttleB' in bot):
- args.append('--noRAW_threading')
-
- return args
-
-
def get_builder_spec(api, builder_name):
builder_dict = api.builder_name_schema.DictForBuilderName(builder_name)
- env = get_extra_env_vars(builder_dict)
- gyp_defs = get_gyp_defines(builder_dict)
- gyp_defs_list = ['%s=%s' % (k, v) for k, v in gyp_defs.iteritems()]
- gyp_defs_list.sort()
- env['GYP_DEFINES'] = ' '.join(gyp_defs_list)
-
- build_targets = build_targets_from_builder_dict(builder_dict)
rv = {
- 'build_targets': build_targets,
'builder_cfg': builder_dict,
- 'dm_flags': dm_flags(builder_name),
- 'env': env,
- 'nanobench_flags': nanobench_flags(builder_name),
}
device = device_cfg(builder_dict)
if device:
@@ -563,122 +123,6 @@ def get_builder_spec(api, builder_name):
return rv
-def nanobench_flags(bot):
- args = ['--pre_log']
-
- if 'GPU' in bot:
- args.append('--images')
- args.extend(['--gpuStatsDump', 'true'])
-
- if 'Android' in bot and 'GPU' in bot:
- args.extend(['--useThermalManager', '1,1,10,1000'])
-
- args.extend(['--scales', '1.0', '1.1'])
-
- if 'iOS' in bot:
- args.extend(['--skps', 'ignore_skps'])
-
- config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui' ]
- config += [ 'f16', 'srgb' ]
- # The S4 crashes and the NP produces a long error stream when we run with
- # MSAA.
- if ('GalaxyS4' not in bot and
- 'NexusPlayer' not in bot):
- if 'Android' in bot:
- # The TegraX1 has a regular OpenGL implementation. We bench that instead
- # of ES.
- if 'TegraX1' in bot:
- config.remove('gpu')
- config.extend(['gl', 'glmsaa4', 'glnvpr4', 'glnvprdit4'])
- else:
- config.extend(['msaa4', 'nvpr4', 'nvprdit4'])
- else:
- config.extend(['msaa16', 'nvpr16', 'nvprdit16'])
-
- # Bench instanced rendering on a limited number of platforms
- if 'Nexus6' in bot: # pragma: no cover
- config.append('esinst') # esinst4 isn't working yet on Adreno.
- elif 'TegraX1' in bot:
- config.extend(['glinst', 'glinst4'])
- elif 'MacMini6.2' in bot:
- config.extend(['glinst', 'glinst16'])
-
- if 'Vulkan' in bot:
- config = ['vk']
-
- args.append('--config')
- args.extend(config)
-
- if 'Valgrind' in bot:
- # Don't care about Valgrind performance.
- args.extend(['--loops', '1'])
- args.extend(['--samples', '1'])
- # Ensure that the bot framework does not think we have timed out.
- args.extend(['--keepAlive', 'true'])
-
- match = []
- if 'Android' in bot:
- # Segfaults when run as GPU bench. Very large texture?
- match.append('~blurroundrect')
- match.append('~patch_grid') # skia:2847
- match.append('~desk_carsvg')
- if 'NexusPlayer' in bot: # pragma: no cover
- match.append('~desk_unicodetable')
- if 'Nexus5' in bot: # pragma: no cover
- match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178
- if 'iOS' in bot:
- match.append('~blurroundrect')
- match.append('~patch_grid') # skia:2847
- match.append('~desk_carsvg')
- match.append('~keymobi')
- match.append('~path_hairline')
- match.append('~GLInstancedArraysBench') # skia:4714
-
- # the 32-bit GCE bots run out of memory in DM when running these large images
- # so defensively disable them in nanobench, too.
- # FIXME (scroggo): This may have just been due to SkImageDecoder's
- # buildTileIndex leaking memory (https://bug.skia.org/4360). That is
- # disabled by default for nanobench, so we may not need this.
- # FIXME (scroggo): Share image blacklists between dm and nanobench?
- if 'x86' in bot and not 'x86-64' in bot:
- match.append('~interlaced1.png')
- match.append('~interlaced2.png')
- match.append('~interlaced3.png')
-
- # This low-end Android bot crashes about 25% of the time while running the
- # (somewhat intense) shapes benchmarks.
- if 'Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release' in bot:
- match.append('~shapes_') # pragma: no cover
-
- # We do not need or want to benchmark the decodes of incomplete images.
- # In fact, in nanobench we assert that the full image decode succeeds.
- match.append('~inc0.gif')
- match.append('~inc1.gif')
- match.append('~incInterlaced.gif')
- match.append('~inc0.jpg')
- match.append('~incGray.jpg')
- match.append('~inc0.wbmp')
- match.append('~inc1.wbmp')
- match.append('~inc0.webp')
- match.append('~inc1.webp')
- match.append('~inc0.ico')
- match.append('~inc1.ico')
- match.append('~inc0.png')
- match.append('~inc1.png')
- match.append('~inc2.png')
- match.append('~inc12.png')
- match.append('~inc13.png')
- match.append('~inc14.png')
- match.append('~inc0.webp')
- match.append('~inc1.webp')
-
- if match:
- args.append('--match')
- args.extend(match)
-
- return args
-
-
class SkiaVarsApi(recipe_api.RecipeApi):
def make_path(self, *path):
diff --git a/infra/bots/recipes/swarm_compile.py b/infra/bots/recipes/swarm_compile.py
index bb592563af..9003550d6d 100644
--- a/infra/bots/recipes/swarm_compile.py
+++ b/infra/bots/recipes/swarm_compile.py
@@ -28,16 +28,24 @@ TEST_BUILDERS = {
'Build-Mac-Clang-x86_64-Release-CMake',
'Build-Ubuntu-Clang-x86_64-Debug-GN',
'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
+ #'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs',
+ #'Build-Ubuntu-GCC-Arm7-Debug-Android_NoNeon',
'Build-Ubuntu-GCC-Arm7-Release-Android',
'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan',
'Build-Ubuntu-GCC-x86-Debug',
'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
'Build-Ubuntu-GCC-x86_64-Debug-GN',
+ #'Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE',
+ #'Build-Ubuntu-GCC-x86_64-Release-ANGLE',
'Build-Ubuntu-GCC-x86_64-Release-CMake',
+ #'Build-Ubuntu-GCC-x86_64-Release-Fast',
+ #'Build-Ubuntu-GCC-x86_64-Release-Mesa',
'Build-Ubuntu-GCC-x86_64-Release-PDFium',
'Build-Ubuntu-GCC-x86_64-Release-Shared',
'Build-Ubuntu-GCC-x86_64-Release-Valgrind',
'Build-Win-MSVC-x86-Debug',
+ #'Build-Win-MSVC-x86-Debug-Exceptions',
+ #'Build-Win-MSVC-x86-Release-GDI',
'Build-Win-MSVC-x86-Release-GN',
'Build-Win-MSVC-x86_64-Release-Vulkan',
],
@@ -45,12 +53,151 @@ TEST_BUILDERS = {
}
+def build_targets_from_builder_dict(builder_dict):
+ """Return a list of targets to build, depending on the builder type."""
+ if builder_dict.get('extra_config') == 'iOS':
+ return ['iOSShell']
+ if 'SAN' in builder_dict.get('extra_config', ''):
+ # 'most' does not compile under MSAN.
+ return ['dm', 'nanobench']
+ else:
+ return ['most']
+
+
+def get_extra_env_vars(builder_dict):
+ env = {}
+ if builder_dict.get('compiler') == 'Clang':
+ env['CC'] = '/usr/bin/clang'
+ env['CXX'] = '/usr/bin/clang++'
+
+ # SKNX_NO_SIMD, SK_USE_DISCARDABLE_SCALEDIMAGECACHE, etc.
+ extra_config = builder_dict.get('extra_config', '')
+ if extra_config.startswith('SK') and extra_config.isupper():
+ env['CPPFLAGS'] = '-D' + extra_config # pragma: no cover
+
+ return env
+
+
+def get_gyp_defines(builder_dict):
+ gyp_defs = {}
+
+ # skia_arch_type.
+ arch = builder_dict['target_arch']
+
+ arch_types = {
+ 'x86': 'x86',
+ 'x86_64': 'x86_64',
+ 'Arm7': 'arm',
+ 'Arm64': 'arm64',
+ 'Mips': 'mips32',
+ 'Mips64': 'mips64',
+ 'MipsDSP2': 'mips32',
+ }
+ if arch in arch_types:
+ gyp_defs['skia_arch_type'] = arch_types[arch]
+
+ # skia_warnings_as_errors.
+ werr = False
+ if 'Win' in builder_dict.get('os', ''):
+ if not ('GDI' in builder_dict.get('extra_config', '') or
+ 'Exceptions' in builder_dict.get('extra_config', '')):
+ werr = True
+ elif ('Mac' in builder_dict.get('os', '') and
+ 'Android' in builder_dict.get('extra_config', '')):
+ werr = False
+ elif 'Fast' in builder_dict.get('extra_config', ''):
+ # See https://bugs.chromium.org/p/skia/issues/detail?id=5257
+ werr = False # pragma: no cover
+ else:
+ werr = True
+ gyp_defs['skia_warnings_as_errors'] = str(int(werr)) # True/False -> '1'/'0'
+
+ # Win debugger.
+ if 'Win' in builder_dict.get('os', ''):
+ gyp_defs['skia_win_debuggers_path'] = 'c:/DbgHelp'
+
+ # Qt SDK (Win).
+ if 'Win' in builder_dict.get('os', ''):
+ gyp_defs['qt_sdk'] = 'C:/Qt/4.8.5/'
+
+ # ANGLE.
+ if builder_dict.get('extra_config') == 'ANGLE': # pragma: no cover
+ gyp_defs['skia_angle'] = '1'
+ if builder_dict.get('os', '') in ('Ubuntu', 'Linux'):
+ gyp_defs['use_x11'] = '1'
+ gyp_defs['chromeos'] = '0'
+
+ # GDI.
+ if builder_dict.get('extra_config') == 'GDI':
+ gyp_defs['skia_gdi'] = '1' # pragma: no cover
+
+ # Build with Exceptions on Windows.
+ if ('Win' in builder_dict.get('os', '') and
+ builder_dict.get('extra_config') == 'Exceptions'):
+ gyp_defs['skia_win_exceptions'] = '1' # pragma: no cover
+
+ # iOS.
+ if (builder_dict.get('os') == 'iOS' or
+ builder_dict.get('extra_config') == 'iOS'):
+ gyp_defs['skia_os'] = 'ios'
+
+ # Shared library build.
+ if builder_dict.get('extra_config') == 'Shared':
+ gyp_defs['skia_shared_lib'] = '1'
+
+ # Build fastest Skia possible.
+ if builder_dict.get('extra_config') == 'Fast':
+ gyp_defs['skia_fast'] = '1' # pragma: no cover
+
+ # PDF viewer in GM.
+ if (builder_dict.get('os') == 'Mac10.8' and
+ builder_dict.get('arch') == 'x86_64' and
+ builder_dict.get('configuration') == 'Release'): # pragma: no cover
+ gyp_defs['skia_run_pdfviewer_in_gm'] = '1'
+
+ # Clang.
+ if builder_dict.get('compiler') == 'Clang':
+ gyp_defs['skia_clang_build'] = '1'
+
+ # Valgrind.
+ if 'Valgrind' in builder_dict.get('extra_config', ''):
+ gyp_defs['skia_release_optimization_level'] = '1'
+
+ # Link-time code generation just wastes time on compile-only bots.
+ if builder_dict.get('compiler') == 'MSVC':
+ gyp_defs['skia_win_ltcg'] = '0'
+
+ # Mesa.
+ if (builder_dict.get('extra_config') == 'Mesa' or
+ builder_dict.get('cpu_or_gpu_value') == 'Mesa'):
+ gyp_defs['skia_mesa'] = '1' # pragma: no cover
+
+ # skia_use_android_framework_defines.
+ if builder_dict.get('extra_config') == 'Android_FrameworkDefs':
+ gyp_defs['skia_use_android_framework_defines'] = '1' # pragma: no cover
+
+ # CommandBuffer.
+ if builder_dict.get('extra_config') == 'CommandBuffer':
+ gyp_defs['skia_command_buffer'] = '1'
+
+ # Vulkan.
+ if builder_dict.get('extra_config') == 'Vulkan':
+ gyp_defs['skia_vulkan'] = '1'
+ gyp_defs['skia_vulkan_debug_layers'] = '0'
+
+ return gyp_defs
+
+
def RunSteps(api):
api.core.setup()
- env = api.vars.builder_spec['env']
+ env = get_extra_env_vars(api.vars.builder_cfg)
+ gyp_defs = get_gyp_defines(api.vars.builder_cfg)
+ gyp_defs_list = ['%s=%s' % (k, v) for k, v in gyp_defs.iteritems()]
+ gyp_defs_list.sort()
+ env['GYP_DEFINES'] = ' '.join(gyp_defs_list)
- build_targets = api.vars.builder_spec['build_targets']
+ build_targets = build_targets_from_builder_dict(api.vars.builder_cfg)
try:
for target in build_targets:
diff --git a/infra/bots/recipes/swarm_perf.py b/infra/bots/recipes/swarm_perf.py
index 7d0d5e482a..b46ba92f22 100644
--- a/infra/bots/recipes/swarm_perf.py
+++ b/infra/bots/recipes/swarm_perf.py
@@ -23,17 +23,140 @@ DEPS = [
TEST_BUILDERS = {
'client.skia': {
'skiabot-linux-swarm-000': [
+ #'Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release',
+ #'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Debug',
+ #'Perf-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release',
+ 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release',
+ #'Perf-Android-GCC-NexusPlayer-GPU-PowerVR-x86-Release',
+ #'Perf-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan',
+ #'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
+ #'Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN',
+ 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
+ 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release',
'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug',
'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot',
- 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
- 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release',
- 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
],
},
}
+def nanobench_flags(bot):
+ args = ['--pre_log']
+
+ if 'GPU' in bot:
+ args.append('--images')
+ args.extend(['--gpuStatsDump', 'true'])
+
+ if 'Android' in bot and 'GPU' in bot:
+ args.extend(['--useThermalManager', '1,1,10,1000'])
+
+ args.extend(['--scales', '1.0', '1.1'])
+
+ if 'iOS' in bot:
+ args.extend(['--skps', 'ignore_skps']) # pragma: no cover
+
+ config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui' ]
+ config += [ 'f16', 'srgb' ]
+ # The S4 crashes and the NP produces a long error stream when we run with
+ # MSAA.
+ if ('GalaxyS4' not in bot and
+ 'NexusPlayer' not in bot):
+ if 'Android' in bot:
+ # The TegraX1 has a regular OpenGL implementation. We bench that instead
+ # of ES.
+ if 'TegraX1' in bot: # pragma: no cover
+ config.remove('gpu')
+ config.extend(['gl', 'glmsaa4', 'glnvpr4', 'glnvprdit4'])
+ else:
+ config.extend(['msaa4', 'nvpr4', 'nvprdit4'])
+ else:
+ config.extend(['msaa16', 'nvpr16', 'nvprdit16'])
+
+ # Bench instanced rendering on a limited number of platforms
+ if 'Nexus6' in bot: # pragma: no cover
+ config.append('esinst') # esinst4 isn't working yet on Adreno.
+ elif 'TegraX1' in bot:
+ config.extend(['glinst', 'glinst4']) # pragma: no cover
+ elif 'MacMini6.2' in bot:
+ config.extend(['glinst', 'glinst16']) # pragma: no cover
+
+ if 'Vulkan' in bot:
+ config = ['vk'] # pragma: no cover
+
+ args.append('--config')
+ args.extend(config)
+
+ if 'Valgrind' in bot:
+ # Don't care about Valgrind performance.
+ args.extend(['--loops', '1'])
+ args.extend(['--samples', '1'])
+ # Ensure that the bot framework does not think we have timed out.
+ args.extend(['--keepAlive', 'true'])
+
+ match = []
+ if 'Android' in bot:
+ # Segfaults when run as GPU bench. Very large texture?
+ match.append('~blurroundrect')
+ match.append('~patch_grid') # skia:2847
+ match.append('~desk_carsvg')
+ if 'NexusPlayer' in bot:
+ match.append('~desk_unicodetable') # pragma: no cover
+ if 'Nexus5' in bot: # pragma: no cover
+ match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178
+ if 'iOS' in bot: # pragma: no cover
+ match.append('~blurroundrect')
+ match.append('~patch_grid') # skia:2847
+ match.append('~desk_carsvg')
+ match.append('~keymobi')
+ match.append('~path_hairline')
+ match.append('~GLInstancedArraysBench') # skia:4714
+
+ # the 32-bit GCE bots run out of memory in DM when running these large images
+ # so defensively disable them in nanobench, too.
+ # FIXME (scroggo): This may have just been due to SkImageDecoder's
+ # buildTileIndex leaking memory (https://bug.skia.org/4360). That is
+ # disabled by default for nanobench, so we may not need this.
+ # FIXME (scroggo): Share image blacklists between dm and nanobench?
+ if 'x86' in bot and not 'x86-64' in bot:
+ match.append('~interlaced1.png')
+ match.append('~interlaced2.png')
+ match.append('~interlaced3.png')
+
+ # This low-end Android bot crashes about 25% of the time while running the
+ # (somewhat intense) shapes benchmarks.
+ if 'Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release' in bot:
+ match.append('~shapes_') # pragma: no cover
+
+ # We do not need or want to benchmark the decodes of incomplete images.
+ # In fact, in nanobench we assert that the full image decode succeeds.
+ match.append('~inc0.gif')
+ match.append('~inc1.gif')
+ match.append('~incInterlaced.gif')
+ match.append('~inc0.jpg')
+ match.append('~incGray.jpg')
+ match.append('~inc0.wbmp')
+ match.append('~inc1.wbmp')
+ match.append('~inc0.webp')
+ match.append('~inc1.webp')
+ match.append('~inc0.ico')
+ match.append('~inc1.ico')
+ match.append('~inc0.png')
+ match.append('~inc1.png')
+ match.append('~inc2.png')
+ match.append('~inc12.png')
+ match.append('~inc13.png')
+ match.append('~inc14.png')
+ match.append('~inc0.webp')
+ match.append('~inc1.webp')
+
+ if match:
+ args.append('--match')
+ args.extend(match)
+
+ return args
+
+
def perf_steps(api):
"""Run Skia benchmarks."""
if api.vars.upload_perf_results:
@@ -71,7 +194,7 @@ def perf_steps(api):
skip_flag = '--nocpu'
if skip_flag:
args.append(skip_flag)
- args.extend(api.vars.builder_spec['nanobench_flags'])
+ args.extend(nanobench_flags(api.vars.builder_name))
if api.vars.upload_perf_results:
json_path = api.flavor.device_path_join(
@@ -123,21 +246,23 @@ def GenTests(api):
'get EXTERNAL_STORAGE dir',
stdout=api.raw_io.output('/storage/emulated/legacy')) +
api.step_data(
- 'adb root',
- stdout=api.raw_io.output('restarting adbd as root')) +
- api.step_data(
'read SKP_VERSION',
stdout=api.raw_io.output('42')) +
api.step_data(
'read SK_IMAGE_VERSION',
stdout=api.raw_io.output('42')) +
api.step_data(
- 'exists skia_perf',
- stdout=api.raw_io.output('')) +
- api.step_data(
'which adb',
retcode=1)
)
+ if not 'Debug' in builder:
+ test_data += api.step_data(
+ 'exists skia_perf',
+ stdout=api.raw_io.output(''))
+ if not 'GalaxyS3' in builder:
+ test_data += api.step_data(
+ 'adb root',
+ stdout=api.raw_io.output('restarting adbd as root'))
return test_data
for mastername, slaves in TEST_BUILDERS.iteritems():
diff --git a/infra/bots/recipes/swarm_test.py b/infra/bots/recipes/swarm_test.py
index 2324140462..ff016b9db3 100644
--- a/infra/bots/recipes/swarm_test.py
+++ b/infra/bots/recipes/swarm_test.py
@@ -24,19 +24,303 @@ DEPS = [
TEST_BUILDERS = {
'client.skia': {
'skiabot-linux-swarm-000': [
+ #'Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release',
'Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug',
+ #'Test-Android-GCC-Nexus10-GPU-MaliT604-Arm7-Release',
+ #'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Debug',
'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug',
+ #'Test-Android-GCC-Nexus9-CPU-Denver-Arm64-Debug',
+ #'Test-Android-GCC-NexusPlayer-CPU-SSE4-x86-Release',
+ #'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug',
'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
+ #'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug',
+ #'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Debug',
+ #'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer',
'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
+ #'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN',
+ #'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN',
'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
+ #'Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan',
'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release-Trybot',
+ #'Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE',
],
},
}
+def dm_flags(bot):
+ args = []
+
+ # 32-bit desktop bots tend to run out of memory, because they have relatively
+ # far more cores than RAM (e.g. 32 cores, 3G RAM). Hold them back a bit.
+ if '-x86-' in bot and not 'NexusPlayer' in bot:
+ args.extend('--threads 4'.split(' ')) # pragma: no cover
+
+ # These are the canonical configs that we would ideally run on all bots. We
+ # may opt out or substitute some below for specific bots
+ configs = ['565', '8888', 'gpu', 'gpusrgb', 'pdf']
+ # Add in either msaa4 or msaa16 to the canonical set of configs to run
+ if 'Android' in bot or 'iOS' in bot:
+ configs.append('msaa4')
+ else:
+ configs.append('msaa16')
+
+ # With msaa, the S4 crashes and the NP produces a long error stream when we
+ # run with MSAA. The Tegra2 and Tegra3 just don't support it. No record of
+ # why we're not running msaa on iOS, probably started with gpu config and just
+ # haven't tried.
+ if ('GalaxyS4' in bot or
+ 'NexusPlayer' in bot or
+ 'Tegra3' in bot or
+ 'iOS' in bot):
+ configs = [x for x in configs if 'msaa' not in x]
+
+ # Runs out of memory on Android bots and Daisy. Everyone else seems fine.
+ if 'Android' in bot or 'Daisy' in bot:
+ configs.remove('pdf')
+
+ if '-GCE-' in bot:
+ configs.extend(['f16', 'srgb']) # Gamma-correct formats.
+ configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture.
+
+ if '-TSAN' not in bot:
+ if ('TegraK1' in bot or
+ 'TegraX1' in bot or
+ 'GTX550Ti' in bot or
+ 'GTX660' in bot or
+ 'GT610' in bot):
+ if 'Android' in bot:
+ configs.append('nvprdit4') # pragma: no cover
+ else:
+ configs.append('nvprdit16')
+
+ # We want to test the OpenGL config not the GLES config on the X1
+ if 'TegraX1' in bot: # pragma: no cover
+ configs = [x.replace('gpu', 'gl') for x in configs]
+ configs = [x.replace('msaa', 'glmsaa') for x in configs]
+ configs = [x.replace('nvpr', 'glnvpr') for x in configs]
+
+ # NP is running out of RAM when we run all these modes. skia:3255
+ if 'NexusPlayer' not in bot:
+ configs.extend(mode + '-8888' for mode in
+ ['serialize', 'tiles_rt', 'pic'])
+
+ if 'ANGLE' in bot:
+ configs.append('angle') # pragma: no cover
+
+ # We want to run gpudft on atleast the mali 400
+ if 'GalaxyS3' in bot:
+ configs.append('gpudft')
+
+ # Test instanced rendering on a limited number of platforms
+ if 'Nexus6' in bot: # pragma: no cover
+ configs.append('esinst') # esinst4 isn't working yet on Adreno.
+ elif 'TegraX1' in bot: # pragma: no cover
+ # Multisampled instanced configs use nvpr.
+ configs = [x.replace('glnvpr', 'glinst') for x in configs]
+ configs.append('glinst')
+ elif 'MacMini6.2' in bot:
+ configs.extend(['glinst', 'glinst16']) # pragma: no cover
+
+ # CommandBuffer bot *only* runs the command_buffer config.
+ if 'CommandBuffer' in bot:
+ configs = ['commandbuffer'] # pragma: no cover
+
+ # Vulkan bot *only* runs the vk config.
+ if 'Vulkan' in bot:
+ configs = ['vk'] # pragma: no cover
+
+ args.append('--config')
+ args.extend(configs)
+
+ # Run tests, gms, and image decoding tests everywhere.
+ args.extend('--src tests gm image colorImage'.split(' '))
+
+ if 'GalaxyS' in bot:
+ args.extend(('--threads', '0'))
+
+ blacklist = []
+
+ # TODO: ???
+ blacklist.extend('f16 _ _ dstreadshuffle'.split(' '))
+ blacklist.extend('f16 image _ _'.split(' '))
+ blacklist.extend('srgb image _ _'.split(' '))
+ blacklist.extend('gpusrgb image _ _'.split(' '))
+
+ if 'Valgrind' in bot:
+ # These take 18+ hours to run.
+ blacklist.extend('pdf gm _ fontmgr_iter'.split(' '))
+ blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' '))
+ blacklist.extend('pdf skp _ worldjournal'.split(' '))
+ blacklist.extend('pdf skp _ desk_baidu.skp'.split(' '))
+ blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' '))
+
+ if 'iOS' in bot:
+ blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' '))
+ blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
+
+ if 'Mac' in bot or 'iOS' in bot:
+ # CG fails on questionable bmps
+ blacklist.extend('_ image gen_platf rgba32abf.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rgb24prof.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rgb24lprof.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 8bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 4bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 32bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 24bpp-pixeldata-cropped.bmp'.split(' '))
+
+ # CG has unpredictable behavior on this questionable gif
+ # It's probably using uninitialized memory
+ blacklist.extend('_ image gen_platf frame_larger_than_image.gif'.split(' '))
+
+ # WIC fails on questionable bmps
+ if 'Win' in bot:
+ blacklist.extend('_ image gen_platf rle8-height-negative.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rle4-height-negative.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf pal8os2v2.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf pal8os2v2-16.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rgba32abf.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rgb24prof.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf rgb24lprof.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 8bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 4bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 32bpp-pixeldata-cropped.bmp'.split(' '))
+ blacklist.extend('_ image gen_platf 24bpp-pixeldata-cropped.bmp'.split(' '))
+ if 'x86_64' in bot and 'CPU' in bot:
+ # This GM triggers a SkSmallAllocator assert.
+ blacklist.extend('_ gm _ composeshader_bitmap'.split(' '))
+
+ if 'Android' in bot or 'iOS' in bot:
+ # This test crashes the N9 (perhaps because of large malloc/frees). It also
+ # is fairly slow and not platform-specific. So we just disable it on all of
+ # Android and iOS. skia:5438
+ blacklist.extend('_ test _ GrShape'.split(' '))
+
+ if 'Win8' in bot:
+ # bungeman: "Doesn't work on Windows anyway, produces unstable GMs with
+ # 'Unexpected error' from DirectWrite"
+ blacklist.extend('_ gm _ fontscalerdistortable'.split(' '))
+
+ # skia:4095
+ bad_serialize_gms = ['bleed_image',
+ 'c_gms',
+ 'colortype',
+ 'colortype_xfermodes',
+ 'drawfilter',
+ 'fontmgr_bounds_0.75_0',
+ 'fontmgr_bounds_1_-0.25',
+ 'fontmgr_bounds',
+ 'fontmgr_match',
+ 'fontmgr_iter']
+
+ # skia:5589
+ bad_serialize_gms.extend(['bitmapfilters',
+ 'bitmapshaders',
+ 'bleed',
+ 'bleed_alpha_bmp',
+ 'bleed_alpha_bmp_shader',
+ 'convex_poly_clip',
+ 'extractalpha',
+ 'filterbitmap_checkerboard_32_32_g8',
+ 'filterbitmap_image_mandrill_64',
+ 'shadows',
+ 'simpleaaclip_aaclip'])
+ # skia:5595
+ bad_serialize_gms.extend(['composeshader_bitmap',
+ 'scaled_tilemodes_npot',
+ 'scaled_tilemodes'])
+ for test in bad_serialize_gms:
+ blacklist.extend(['serialize-8888', 'gm', '_', test])
+
+ if 'Mac' not in bot:
+ for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']:
+ blacklist.extend(['serialize-8888', 'gm', '_', test])
+ # It looks like we skip these only for out-of-memory concerns.
+ if 'Win' in bot or 'Android' in bot:
+ for test in ['verylargebitmap', 'verylarge_picture_image']:
+ blacklist.extend(['serialize-8888', 'gm', '_', test])
+
+ # skia:4769
+ for test in ['drawfilter']:
+ blacklist.extend([ 'sp-8888', 'gm', '_', test])
+ blacklist.extend([ 'pic-8888', 'gm', '_', test])
+ blacklist.extend(['2ndpic-8888', 'gm', '_', test])
+ # skia:4703
+ for test in ['image-cacherator-from-picture',
+ 'image-cacherator-from-raster',
+ 'image-cacherator-from-ctable']:
+ blacklist.extend([ 'sp-8888', 'gm', '_', test])
+ blacklist.extend([ 'pic-8888', 'gm', '_', test])
+ blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
+ blacklist.extend(['serialize-8888', 'gm', '_', test])
+
+ # Extensions for RAW images
+ r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
+ "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
+
+ # skbug.com/4888
+ # Blacklist RAW images (and a few large PNGs) on GPU bots
+ # until we can resolve failures
+ if 'GPU' in bot:
+ blacklist.extend('_ image _ interlaced1.png'.split(' '))
+ blacklist.extend('_ image _ interlaced2.png'.split(' '))
+ blacklist.extend('_ image _ interlaced3.png'.split(' '))
+ for raw_ext in r:
+ blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
+
+ if 'Nexus9' in bot: # pragma: no cover
+ for raw_ext in r:
+ blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
+
+ # Large image that overwhelms older Mac bots
+ if 'MacMini4.1-GPU' in bot: # pragma: no cover
+ blacklist.extend('_ image _ abnormal.wbmp'.split(' '))
+ blacklist.extend(['msaa16', 'gm', '_', 'blurcircles'])
+
+ match = []
+ if 'Valgrind' in bot: # skia:3021
+ match.append('~Threaded')
+
+ if 'GalaxyS3' in bot: # skia:1699
+ match.append('~WritePixels')
+
+ if 'AndroidOne' in bot: # skia:4711
+ match.append('~WritePixels') # pragma: no cover
+
+ if 'NexusPlayer' in bot:
+ match.append('~ResourceCache') # pragma: no cover
+
+ if 'Nexus10' in bot: # skia:5509
+ match.append('~CopySurface') # pragma: no cover
+
+ if 'ANGLE' in bot and 'Debug' in bot: # pragma: no cover
+ match.append('~GLPrograms') # skia:4717
+
+ if 'MSAN' in bot:
+ match.extend(['~Once', '~Shared']) # Not sure what's up with these tests.
+
+ if 'TSAN' in bot: # pragma: no cover
+ match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots.
+
+ if blacklist:
+ args.append('--blacklist')
+ args.extend(blacklist)
+
+ if match:
+ args.append('--match')
+ args.extend(match)
+
+ # These bots run out of memory running RAW codec tests. Do not run them in
+ # parallel
+ if ('NexusPlayer' in bot or 'Nexus5' in bot or 'Nexus9' in bot
+ or 'Win8-MSVC-ShuttleB' in bot):
+ args.append('--noRAW_threading')
+
+ return args
+
+
def key_params(api):
"""Build a unique key from the builder name (as a list).
@@ -163,7 +447,7 @@ def test_steps(api):
skip_flag = '--nocpu'
if skip_flag:
args.append(skip_flag)
- args.extend(api.vars.builder_spec['dm_flags'])
+ args.extend(dm_flags(api.vars.builder_name))
api.run(api.flavor.step, 'dm', cmd=args,
abort_on_failure=False,