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

Side by Side Diff: tools/testrunner/local/variants.py

Issue 2513563002: Remove FLAG_min_preparse_length. (Closed)
Patch Set: test262 expectations Created 4 years, 1 month 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
« no previous file with comments | « tools/parser-shell.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project 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 # Use this to run several variants of the tests. 5 # Use this to run several variants of the tests.
6 ALL_VARIANT_FLAGS = { 6 ALL_VARIANT_FLAGS = {
7 "default": [[]], 7 "default": [[]],
8 "stress": [["--stress-opt", "--always-opt"]], 8 "stress": [["--stress-opt", "--always-opt"]],
9 "turbofan": [["--turbo"]], 9 "turbofan": [["--turbo"]],
10 "turbofan_opt": [["--turbo", "--always-opt"]], 10 "turbofan_opt": [["--turbo", "--always-opt"]],
11 "nocrankshaft": [["--nocrankshaft"]], 11 "nocrankshaft": [["--nocrankshaft"]],
12 "ignition": [["--ignition"]], 12 "ignition": [["--ignition"]],
13 "ignition_staging": [["--ignition-staging"]], 13 "ignition_staging": [["--ignition-staging"]],
14 "ignition_turbofan": [["--ignition-staging", "--turbo"]], 14 "ignition_turbofan": [["--ignition-staging", "--turbo"]],
15 "preparser": [["--min-preparse-length=0"]],
16 "asm_wasm": [["--validate-asm"]], 15 "asm_wasm": [["--validate-asm"]],
17 "wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]], 16 "wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]],
18 } 17 }
19 18
20 # FAST_VARIANTS implies no --always-opt. 19 # FAST_VARIANTS implies no --always-opt.
21 FAST_VARIANT_FLAGS = { 20 FAST_VARIANT_FLAGS = {
22 "default": [[]], 21 "default": [[]],
23 "stress": [["--stress-opt"]], 22 "stress": [["--stress-opt"]],
24 "turbofan": [["--turbo"]], 23 "turbofan": [["--turbo"]],
25 "nocrankshaft": [["--nocrankshaft"]], 24 "nocrankshaft": [["--nocrankshaft"]],
26 "ignition": [["--ignition"]], 25 "ignition": [["--ignition"]],
27 "ignition_staging": [["--ignition-staging"]], 26 "ignition_staging": [["--ignition-staging"]],
28 "ignition_turbofan": [["--ignition-staging", "--turbo"]], 27 "ignition_turbofan": [["--ignition-staging", "--turbo"]],
29 "preparser": [["--min-preparse-length=0"]],
30 "asm_wasm": [["--validate-asm"]], 28 "asm_wasm": [["--validate-asm"]],
31 "wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]], 29 "wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]],
32 } 30 }
33 31
34 ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt", 32 ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
35 "nocrankshaft", "ignition", "ignition_staging", 33 "nocrankshaft", "ignition", "ignition_staging",
36 "ignition_turbofan", "preparser", "asm_wasm", "wasm_traps"]) 34 "ignition_turbofan", "asm_wasm", "wasm_traps"])
OLDNEW
« no previous file with comments | « tools/parser-shell.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698