Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: infra/bots/recipe_modules/vars/api.py

Issue 2206953006: Create a separate src for colorspace tests (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: FIXME Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # pylint: disable=W0201 6 # pylint: disable=W0201
7 7
8 8
9 from recipe_engine import recipe_api 9 from recipe_engine import recipe_api
10 import os 10 import os
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 configs = ['commandbuffer'] 313 configs = ['commandbuffer']
314 314
315 # Vulkan bot *only* runs the vk config. 315 # Vulkan bot *only* runs the vk config.
316 if 'Vulkan' in bot: 316 if 'Vulkan' in bot:
317 configs = ['vk'] 317 configs = ['vk']
318 318
319 args.append('--config') 319 args.append('--config')
320 args.extend(configs) 320 args.extend(configs)
321 321
322 # Run tests, gms, and image decoding tests everywhere. 322 # Run tests, gms, and image decoding tests everywhere.
323 args.extend('--src tests gm image'.split(' ')) 323 args.extend('--src tests gm image colorImage'.split(' '))
324 324
325 if 'GalaxyS' in bot: 325 if 'GalaxyS' in bot:
326 args.extend(('--threads', '0')) 326 args.extend(('--threads', '0'))
327 327
328 blacklist = [] 328 blacklist = []
329 329
330 # TODO: ??? 330 # TODO: ???
331 blacklist.extend('f16 _ _ dstreadshuffle'.split(' ')) 331 blacklist.extend('f16 _ _ dstreadshuffle'.split(' '))
332 blacklist.extend('f16 image _ _'.split(' ')) 332 blacklist.extend('f16 image _ _'.split(' '))
333 blacklist.extend('srgb image _ _'.split(' ')) 333 blacklist.extend('srgb image _ _'.split(' '))
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 self.patchset = self.m.properties['patchset'] 810 self.patchset = self.m.properties['patchset']
811 self.rietveld = self.m.properties['rietveld'] 811 self.rietveld = self.m.properties['rietveld']
812 self.upload_dm_results = self.builder_spec['upload_dm_results'] 812 self.upload_dm_results = self.builder_spec['upload_dm_results']
813 self.upload_perf_results = self.builder_spec['upload_perf_results'] 813 self.upload_perf_results = self.builder_spec['upload_perf_results']
814 self.dm_dir = self.m.path.join( 814 self.dm_dir = self.m.path.join(
815 self.swarming_out_dir, 'dm') 815 self.swarming_out_dir, 'dm')
816 self.perf_data_dir = self.m.path.join(self.swarming_out_dir, 816 self.perf_data_dir = self.m.path.join(self.swarming_out_dir,
817 'perfdata', self.builder_name, 'data') 817 'perfdata', self.builder_name, 'data')
818 self.dm_flags = self.builder_spec['dm_flags'] 818 self.dm_flags = self.builder_spec['dm_flags']
819 self.nanobench_flags = self.builder_spec['nanobench_flags'] 819 self.nanobench_flags = self.builder_spec['nanobench_flags']
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | infra/bots/recipes/swarm_test.expected/Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698