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

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

Issue 230473004: V8 Buildbot: Add the ability to disable tests in nosnap mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from slave.recipe_config import config_item_context, ConfigGroup 5 from slave.recipe_config import config_item_context, ConfigGroup
6 from slave.recipe_config import Set, Single, Static 6 from slave.recipe_config import Set, Single, Static
7 7
8 8
9 def BaseConfig(**_kwargs): 9 def BaseConfig(**_kwargs):
10 shard_count = _kwargs.get('SHARD_COUNT', 1) 10 shard_count = _kwargs.get('SHARD_COUNT', 1)
(...skipping 27 matching lines...) Expand all
38 def gc_stress(c): 38 def gc_stress(c):
39 c.testing.test_args.add('--gc-stress') 39 c.testing.test_args.add('--gc-stress')
40 40
41 41
42 @config_ctx() 42 @config_ctx()
43 def isolates(c): 43 def isolates(c):
44 c.testing.test_args.add('--isolates=on') 44 c.testing.test_args.add('--isolates=on')
45 45
46 46
47 @config_ctx() 47 @config_ctx()
48 def no_snapshot(c):
49 c.testing.test_args.add('--no-snap')
50
51
52 @config_ctx()
48 def nosse2(c): 53 def nosse2(c):
49 c.testing.test_args.add('--shell_flags="--noenable-sse2"') 54 c.testing.test_args.add('--shell_flags="--noenable-sse2"')
50 55
51 56
52 @config_ctx() 57 @config_ctx()
53 def nosse3(c): 58 def nosse3(c):
54 c.testing.test_args.add('--shell_flags="--noenable-sse3"') 59 c.testing.test_args.add('--shell_flags="--noenable-sse3"')
55 60
56 61
57 @config_ctx() 62 @config_ctx()
58 def nosse4(c): 63 def nosse4(c):
59 c.testing.test_args.add('--shell_flags="--noenable-sse4-1"') 64 c.testing.test_args.add('--shell_flags="--noenable-sse4-1"')
60 65
61 66
62 @config_ctx() 67 @config_ctx()
63 def novfp3(c): 68 def novfp3(c):
64 c.testing.test_args.add('shell_flags="--noenable-vfp3"') 69 c.testing.test_args.add('shell_flags="--noenable-vfp3"')
65 70
66 71
67 @config_ctx() 72 @config_ctx()
68 def trybot_flavor(c): 73 def trybot_flavor(c):
69 c.testing.flaky_step = False 74 c.testing.flaky_step = False
70 c.testing.test_args.add('--quickcheck') 75 c.testing.test_args.add('--quickcheck')
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698