| OLD | NEW |
| 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 Loading... |
| 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') |
| OLD | NEW |