2015-03-25 19:28:33 +00:00
|
|
|
#
|
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
#
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
usage = '''
|
|
|
|
Write extra flags to outfile for DM based on the bot name:
|
2015-03-27 12:42:18 +00:00
|
|
|
$ python dm_flags.py outfile Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug
|
2015-02-24 17:25:16 +00:00
|
|
|
Or run self-tests:
|
|
|
|
$ python dm_flags.py test
|
|
|
|
'''
|
|
|
|
|
|
|
|
import inspect
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def lineno():
|
|
|
|
caller = inspect.stack()[1] # Up one level to our caller.
|
|
|
|
return inspect.getframeinfo(caller[0]).lineno
|
|
|
|
|
|
|
|
|
|
|
|
cov_start = lineno()+1 # We care about coverage starting just past this def.
|
2015-02-24 19:45:11 +00:00
|
|
|
def get_args(bot):
|
2016-02-24 16:58:27 +00:00
|
|
|
args = []
|
2015-02-24 17:25:16 +00:00
|
|
|
|
2016-03-22 18:08:24 +00:00
|
|
|
# 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:
|
2016-03-22 19:36:01 +00:00
|
|
|
args.extend('--threads 4'.split(' '))
|
2016-03-22 18:08:24 +00:00
|
|
|
|
2016-04-06 16:22:36 +00:00
|
|
|
# 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')
|
2015-05-05 20:11:27 +00:00
|
|
|
|
2016-02-29 17:51:09 +00:00
|
|
|
if '-GCE-' in bot:
|
2016-03-03 01:15:15 +00:00
|
|
|
configs.extend(['f16', 'srgb']) # Gamma-correct formats.
|
|
|
|
configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture.
|
2016-02-29 17:51:09 +00:00
|
|
|
|
2015-10-30 16:05:32 +00:00
|
|
|
if '-TSAN' not in bot:
|
|
|
|
if ('TegraK1' in bot or
|
|
|
|
'GTX550Ti' in bot or
|
|
|
|
'GTX660' in bot or
|
|
|
|
'GT610' in bot):
|
|
|
|
if 'Android' in bot:
|
2016-03-30 03:05:07 +00:00
|
|
|
configs.append('nvprdit4')
|
2015-10-30 16:05:32 +00:00
|
|
|
else:
|
2016-03-30 03:05:07 +00:00
|
|
|
configs.append('nvprdit16')
|
2015-04-21 17:34:47 +00:00
|
|
|
|
2016-04-05 15:49:38 +00:00
|
|
|
# We want to test the OpenGL config not the GLES config on the X1
|
|
|
|
if 'TegraX1' in bot:
|
2016-04-06 16:22:36 +00:00
|
|
|
configs = [x.replace('gpu', 'gl') for x in configs]
|
|
|
|
configs = [x.replace('msaa', 'glmsaa') for x in configs]
|
2016-04-06 19:27:07 +00:00
|
|
|
|
2015-04-28 16:54:55 +00:00
|
|
|
# NP is running out of RAM when we run all these modes. skia:3255
|
|
|
|
if 'NexusPlayer' not in bot:
|
2015-02-24 17:25:16 +00:00
|
|
|
configs.extend(mode + '-8888' for mode in
|
2016-01-08 18:19:35 +00:00
|
|
|
['serialize', 'tiles_rt', 'pic'])
|
2015-06-04 22:10:45 +00:00
|
|
|
|
2015-02-25 16:16:19 +00:00
|
|
|
if 'ANGLE' in bot:
|
|
|
|
configs.append('angle')
|
2015-12-08 17:14:01 +00:00
|
|
|
|
|
|
|
# We want to run gpudft on atleast the mali 400
|
|
|
|
if 'GalaxyS3' in bot:
|
|
|
|
configs.append('gpudft')
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
args.append('--config')
|
|
|
|
args.extend(configs)
|
|
|
|
|
2016-02-08 17:10:47 +00:00
|
|
|
# Run tests, gms, and image decoding tests everywhere.
|
2015-06-12 18:31:51 +00:00
|
|
|
# TODO: remove skp from default --src list?
|
2016-02-08 17:10:47 +00:00
|
|
|
args.extend('--src tests gm image'.split(' '))
|
2015-06-12 18:31:51 +00:00
|
|
|
|
2015-04-28 16:54:55 +00:00
|
|
|
if 'GalaxyS' in bot:
|
|
|
|
args.extend(('--threads', '0'))
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
blacklist = []
|
2015-07-16 19:36:10 +00:00
|
|
|
|
2016-03-01 20:17:33 +00:00
|
|
|
# TODO: ???
|
|
|
|
blacklist.extend('f16 _ _ dstreadshuffle'.split(' '))
|
|
|
|
blacklist.extend('f16 image _ _'.split(' '))
|
|
|
|
blacklist.extend('srgb image _ _'.split(' '))
|
2016-03-30 18:19:36 +00:00
|
|
|
blacklist.extend('gpusrgb image _ _'.split(' '))
|
2016-03-01 20:17:33 +00:00
|
|
|
|
2015-03-19 20:09:17 +00:00
|
|
|
# Certain gm's on win7 gpu and pdf are never finishing and keeping the test
|
|
|
|
# running forever
|
|
|
|
if 'Win7' in bot:
|
2015-04-03 14:24:48 +00:00
|
|
|
blacklist.extend('msaa16 gm _ colorwheelnative'.split(' '))
|
|
|
|
blacklist.extend('pdf gm _ fontmgr_iter_factory'.split(' '))
|
2015-03-19 20:09:17 +00:00
|
|
|
|
2015-03-05 21:38:17 +00:00
|
|
|
if 'Valgrind' in bot:
|
2015-03-26 12:12:13 +00:00
|
|
|
# These take 18+ hours to run.
|
2015-04-03 14:24:48 +00:00
|
|
|
blacklist.extend('pdf gm _ fontmgr_iter'.split(' '))
|
|
|
|
blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' '))
|
2015-04-09 10:03:22 +00:00
|
|
|
blacklist.extend('pdf skp _ worldjournal'.split(' '))
|
2015-04-03 14:24:48 +00:00
|
|
|
blacklist.extend('pdf skp _ desk_baidu.skp'.split(' '))
|
2015-04-13 20:29:26 +00:00
|
|
|
blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' '))
|
2015-03-05 21:38:17 +00:00
|
|
|
|
2015-05-05 14:55:06 +00:00
|
|
|
if 'iOS' in bot:
|
|
|
|
blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' '))
|
|
|
|
blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
|
|
|
|
|
2016-03-09 22:20:58 +00:00
|
|
|
if 'Mac' in bot or 'iOS' in bot:
|
2016-03-17 17:45:41 +00:00
|
|
|
# CG fails on questionable bmps
|
2016-03-09 22:20:58 +00:00
|
|
|
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(' '))
|
2016-03-22 18:08:24 +00:00
|
|
|
|
2016-03-17 17:45:41 +00:00
|
|
|
# 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(' '))
|
2016-03-09 22:20:58 +00:00
|
|
|
|
2016-03-17 20:50:17 +00:00
|
|
|
# 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(' '))
|
|
|
|
|
2016-01-07 15:38:29 +00:00
|
|
|
# skia:4095
|
|
|
|
for test in ['not_native32_bitmap_config',
|
|
|
|
'bleed_image',
|
|
|
|
'bleed_alpha_image',
|
|
|
|
'bleed_alpha_image_shader',
|
|
|
|
'blend',
|
|
|
|
'c_gms',
|
|
|
|
'colortype',
|
|
|
|
'colortype_xfermodes',
|
|
|
|
'colorwheelnative',
|
|
|
|
'drawfilter',
|
|
|
|
'fontmgr_bounds_0.75_0',
|
|
|
|
'fontmgr_bounds_1_-0.25',
|
|
|
|
'fontmgr_bounds',
|
|
|
|
'fontmgr_match',
|
|
|
|
'fontmgr_iter',
|
|
|
|
'lightingshader',
|
|
|
|
'path_stroke_with_zero_length',
|
|
|
|
'textblobgeometrychange',
|
|
|
|
'verylargebitmap', # Windows only.
|
|
|
|
'verylarge_picture_image']: # Windows only.
|
|
|
|
blacklist.extend(['serialize-8888', 'gm', '_', test])
|
2016-01-08 18:19:35 +00:00
|
|
|
# skia:4769
|
|
|
|
for test in ['blend',
|
|
|
|
'drawfilter',
|
|
|
|
'path_stroke_with_zero_length',
|
|
|
|
'textblobgeometrychange']:
|
2016-02-29 17:51:09 +00:00
|
|
|
blacklist.extend([ 'sp-8888', 'gm', '_', test])
|
|
|
|
blacklist.extend([ 'pic-8888', 'gm', '_', test])
|
|
|
|
blacklist.extend(['2ndpic-8888', 'gm', '_', test])
|
|
|
|
for test in ['patch_primitive']:
|
|
|
|
blacklist.extend(['sp-8888', 'gm', '_', test])
|
2016-01-11 14:30:47 +00:00
|
|
|
# skia:4703
|
|
|
|
for test in ['image-cacherator-from-picture',
|
|
|
|
'image-cacherator-from-raster',
|
|
|
|
'image-cacherator-from-ctable']:
|
2016-02-29 17:51:09 +00:00
|
|
|
blacklist.extend([ 'sp-8888', 'gm', '_', test])
|
2016-01-11 14:30:47 +00:00
|
|
|
blacklist.extend([ 'pic-8888', 'gm', '_', test])
|
2016-02-29 17:51:09 +00:00
|
|
|
blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
|
2016-01-11 14:30:47 +00:00
|
|
|
blacklist.extend(['serialize-8888', 'gm', '_', test])
|
2016-01-07 15:38:29 +00:00
|
|
|
|
2016-02-08 23:09:48 +00:00
|
|
|
# Extensions for RAW images
|
2016-02-08 19:43:50 +00:00
|
|
|
r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
|
|
|
|
"ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
|
|
|
|
|
|
|
|
# skbug.com/4888
|
2016-03-22 19:36:01 +00:00
|
|
|
# Blacklist RAW images (and a few large PNGs) on GPU bots
|
|
|
|
# until we can resolve failures
|
2016-02-08 19:43:50 +00:00
|
|
|
if 'GPU' in bot:
|
2016-03-22 19:36:01 +00:00
|
|
|
blacklist.extend('_ image _ interlaced1.png'.split(' '))
|
|
|
|
blacklist.extend('_ image _ interlaced2.png'.split(' '))
|
|
|
|
blacklist.extend('_ image _ interlaced3.png'.split(' '))
|
2016-02-02 19:56:33 +00:00
|
|
|
for raw_ext in r:
|
|
|
|
blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
|
|
|
|
|
2016-03-24 17:33:42 +00:00
|
|
|
# Large image that overwhelms older Mac bots
|
|
|
|
if 'MacMini4.1-GPU' in bot:
|
|
|
|
blacklist.extend('_ image _ abnormal.wbmp'.split(' '))
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
match = []
|
|
|
|
if 'Valgrind' in bot: # skia:3021
|
|
|
|
match.append('~Threaded')
|
2015-11-18 15:56:30 +00:00
|
|
|
|
2015-04-28 16:54:55 +00:00
|
|
|
if 'GalaxyS3' in bot: # skia:1699
|
2015-02-24 17:25:16 +00:00
|
|
|
match.append('~WritePixels')
|
2016-01-07 15:38:29 +00:00
|
|
|
|
2015-12-15 18:46:21 +00:00
|
|
|
if 'AndroidOne' in bot: # skia:4711
|
|
|
|
match.append('~WritePixels')
|
2015-02-24 17:25:16 +00:00
|
|
|
|
2015-03-10 18:55:18 +00:00
|
|
|
if 'NexusPlayer' in bot:
|
|
|
|
match.append('~ResourceCache')
|
|
|
|
|
2015-07-21 12:57:22 +00:00
|
|
|
if 'GalaxyS4' in bot: # skia:4079
|
|
|
|
match.append('~imagefiltersclipped')
|
2015-10-06 18:20:09 +00:00
|
|
|
match.append('~imagefilterscropexpand')
|
2015-08-25 13:53:37 +00:00
|
|
|
match.append('~scaled_tilemodes_npot')
|
2015-09-24 13:39:06 +00:00
|
|
|
match.append('~bleed_image') # skia:4367
|
|
|
|
match.append('~ReadPixels') # skia:4368
|
2015-07-21 12:57:22 +00:00
|
|
|
|
2015-12-18 14:50:59 +00:00
|
|
|
if 'ANGLE' in bot and 'Debug' in bot:
|
|
|
|
match.append('~GLPrograms') # skia:4717
|
|
|
|
|
2016-02-18 19:42:00 +00:00
|
|
|
if 'MSAN' in bot:
|
|
|
|
match.extend(['~Once', '~Shared']) # Not sure what's up with these tests.
|
|
|
|
|
2016-02-07 03:12:23 +00:00
|
|
|
if blacklist:
|
|
|
|
args.append('--blacklist')
|
|
|
|
args.extend(blacklist)
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
if match:
|
|
|
|
args.append('--match')
|
|
|
|
args.extend(match)
|
|
|
|
|
2016-02-08 23:09:48 +00:00
|
|
|
# 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:
|
|
|
|
args.append('--noRAW_threading')
|
|
|
|
|
2015-02-24 17:25:16 +00:00
|
|
|
return args
|
|
|
|
cov_end = lineno() # Don't care about code coverage past here.
|
|
|
|
|
|
|
|
|
|
|
|
def self_test():
|
|
|
|
import coverage # This way the bots don't need coverage.py to be installed.
|
|
|
|
args = {}
|
|
|
|
cases = [
|
2015-05-05 17:28:44 +00:00
|
|
|
'Pretend-iOS-Bot',
|
2015-12-15 18:46:21 +00:00
|
|
|
'Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release',
|
2015-04-21 17:34:47 +00:00
|
|
|
'Test-Android-GCC-Nexus9-GPU-TegraK1-Arm64-Debug',
|
2015-03-27 12:42:18 +00:00
|
|
|
'Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug',
|
2015-05-05 17:28:44 +00:00
|
|
|
'Test-Android-GCC-GalaxyS4-GPU-SGX544-Arm7-Release',
|
2015-03-27 12:42:18 +00:00
|
|
|
'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release',
|
|
|
|
'Test-Android-GCC-NexusPlayer-CPU-SSSE3-x86-Release',
|
|
|
|
'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
|
2016-02-07 03:12:23 +00:00
|
|
|
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN',
|
2015-03-27 12:42:18 +00:00
|
|
|
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN',
|
|
|
|
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind',
|
|
|
|
'Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE',
|
2015-11-25 13:36:07 +00:00
|
|
|
'Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release',
|
2016-03-24 17:33:42 +00:00
|
|
|
'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Release',
|
2016-04-05 15:49:38 +00:00
|
|
|
'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release',
|
2015-02-24 17:25:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
cov = coverage.coverage()
|
|
|
|
cov.start()
|
|
|
|
for case in cases:
|
2015-02-24 19:45:11 +00:00
|
|
|
args[case] = get_args(case)
|
2015-02-24 17:25:16 +00:00
|
|
|
cov.stop()
|
|
|
|
|
|
|
|
this_file = os.path.basename(__file__)
|
|
|
|
_, _, not_run, _ = cov.analysis(this_file)
|
|
|
|
filtered = [line for line in not_run if line > cov_start and line < cov_end]
|
|
|
|
if filtered:
|
|
|
|
print 'Lines not covered by test cases: ', filtered
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
golden = this_file.replace('.py', '.json')
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), golden), 'w') as f:
|
|
|
|
json.dump(args, f, indent=2, sort_keys=True)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) == 2 and sys.argv[1] == 'test':
|
|
|
|
self_test()
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if len(sys.argv) != 3:
|
|
|
|
print usage
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
with open(sys.argv[1], 'w') as out:
|
2015-02-24 19:45:11 +00:00
|
|
|
json.dump(get_args(sys.argv[2]), out)
|