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

Side by Side Diff: scripts/slave/recipe_modules/v8/api.py

Issue 1123333005: Adding ecmascript simd tests to v8 buildbots and trybots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import collections 5 import collections
6 import datetime 6 import datetime
7 import math 7 import math
8 import re 8 import re
9 9
10 from infra.libs.infra_types import freeze 10 from infra.libs.infra_types import freeze
(...skipping 28 matching lines...) Expand all
39 'name': 'Mozilla', 39 'name': 'Mozilla',
40 'tests': 'mozilla', 40 'tests': 'mozilla',
41 'gclient_apply_config': ['mozilla_tests'], 41 'gclient_apply_config': ['mozilla_tests'],
42 }, 42 },
43 'optimize_for_size': { 43 'optimize_for_size': {
44 'name': 'OptimizeForSize', 44 'name': 'OptimizeForSize',
45 'tests': 'optimize_for_size', 45 'tests': 'optimize_for_size',
46 'add_flaky_step': True, 46 'add_flaky_step': True,
47 'test_args': ['--no-variants', '--shell_flags="--optimize-for-size"'], 47 'test_args': ['--no-variants', '--shell_flags="--optimize-for-size"'],
48 }, 48 },
49 'simdjs_small': {
50 'name': 'simdjs_small',
Michael Achenbach 2015/05/19 13:48:10 nit: Maybe use camel case for the name as in the o
bradn 2015/05/19 14:31:26 Done.
51 'tests': 'simdjs/shell_test_runner',
52 },
53 'simdjs': {
54 'name': 'simdjs',
55 'tests': 'simdjs',
56 },
49 'test262': { 57 'test262': {
50 'name': 'Test262 - no variants', 58 'name': 'Test262 - no variants',
51 'tests': 'test262', 59 'tests': 'test262',
52 'test_args': ['--no-variants'], 60 'test_args': ['--no-variants'],
53 }, 61 },
54 'test262_variants': { 62 'test262_variants': {
55 'name': 'Test262', 63 'name': 'Test262',
56 'tests': 'test262', 64 'tests': 'test262',
57 }, 65 },
58 'test262_es6': { 66 'test262_es6': {
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 properties = { 895 properties = {
888 'revision': self.revision, 896 'revision': self.revision,
889 'parent_got_revision': self.revision, 897 'parent_got_revision': self.revision,
890 'parent_got_revision_cp': self.revision_cp, 898 'parent_got_revision_cp': self.revision_cp,
891 } 899 }
892 properties.update(**additional_properties) 900 properties.update(**additional_properties)
893 self.m.trigger(*[{ 901 self.m.trigger(*[{
894 'builder_name': builder_name, 902 'builder_name': builder_name,
895 'properties': properties, 903 'properties': properties,
896 } for builder_name in triggers]) 904 } for builder_name in triggers])
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/builders.py » ('j') | scripts/slave/recipe_modules/v8/builders.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698