3d3de00717
Removing it from default variants set which will substantially increase test speed for developers. Pure ignition is intended to be tested only on bots unless opted in. BUG=chromium:682617 R=mstarzinger@chromium.org,mvstanton@chromium.org,rmcilroy@chromium.org Change-Id: I98adb81951a0a2d16f52e6b34b98d3a90e178d8a Reviewed-on: https://chromium-review.googlesource.com/452580 Reviewed-by: Michael Stanton <mvstanton@chromium.org> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org> Reviewed-by: Michael Starzinger <mstarzinger@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#43721}
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Use this to run several variants of the tests.
|
|
ALL_VARIANT_FLAGS = {
|
|
"default": [[]],
|
|
"stress": [["--stress-opt", "--always-opt"]],
|
|
"turbofan": [["--turbo"]],
|
|
"turbofan_opt": [["--turbo", "--always-opt"]],
|
|
"noturbofan": [["--no-turbo"]],
|
|
"noturbofan_stress": [["--no-turbo", "--stress-opt", "--always-opt"]],
|
|
"nocrankshaft": [["--nocrankshaft"]],
|
|
"ignition": [["--ignition"]],
|
|
"ignition_turbofan": [["--ignition-staging", "--turbo"]],
|
|
"asm_wasm": [["--validate-asm"]],
|
|
"wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]],
|
|
}
|
|
|
|
# FAST_VARIANTS implies no --always-opt.
|
|
FAST_VARIANT_FLAGS = {
|
|
"default": [[]],
|
|
"stress": [["--stress-opt"]],
|
|
"turbofan": [["--turbo"]],
|
|
"noturbofan": [["--no-turbo"]],
|
|
"noturbofan_stress": [["--no-turbo", "--stress-opt"]],
|
|
"nocrankshaft": [["--nocrankshaft"]],
|
|
"ignition": [["--ignition"]],
|
|
"ignition_turbofan": [["--ignition-staging", "--turbo"]],
|
|
"asm_wasm": [["--validate-asm"]],
|
|
"wasm_traps": [["--wasm_guard_pages", "--invoke-weak-callbacks"]],
|
|
}
|
|
|
|
ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
|
|
"noturbofan", "noturbofan_opt",
|
|
"nocrankshaft", "ignition",
|
|
"ignition_turbofan", "asm_wasm", "wasm_traps"])
|