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

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

Issue 2203013002: [test] Enable test status filtering by variant (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Nits 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
« no previous file with comments | « tools/testrunner/local/utils.py ('k') | tools/testrunner/objects/testcase.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Use this to run several variants of the tests.
6 ALL_VARIANT_FLAGS = {
7 "default": [[]],
8 "stress": [["--stress-opt", "--always-opt"]],
9 "turbofan": [["--turbo"]],
10 "turbofan_opt": [["--turbo", "--always-opt"]],
11 "nocrankshaft": [["--nocrankshaft"]],
12 "ignition": [["--ignition"]],
13 "ignition_turbofan": [["--ignition-staging", "--turbo"]],
14 "preparser": [["--min-preparse-length=0"]],
15 }
16
17 # FAST_VARIANTS implies no --always-opt.
18 FAST_VARIANT_FLAGS = {
19 "default": [[]],
20 "stress": [["--stress-opt"]],
21 "turbofan": [["--turbo"]],
22 "nocrankshaft": [["--nocrankshaft"]],
23 "ignition": [["--ignition"]],
24 "ignition_turbofan": [["--ignition-staging", "--turbo"]],
25 "preparser": [["--min-preparse-length=0"]],
26 }
27
28 ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
29 "nocrankshaft", "ignition", "ignition_turbofan",
30 "preparser"])
OLDNEW
« no previous file with comments | « tools/testrunner/local/utils.py ('k') | tools/testrunner/objects/testcase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698