[foozzie] Suppress asm messages in all comparison configurations
TBR=mstarzinger@chromium.org NOTRY=true Bug: chromium:748981 Change-Id: I2043d283bd4eb6d98082f202d88638b3ca96a7c8 Reviewed-on: https://chromium-review.googlesource.com/586687 Commit-Queue: Michael Achenbach <machenbach@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#46897}
This commit is contained in:
parent
8315422762
commit
0cda6ffed7
@ -20,10 +20,13 @@ import v8_commands
|
||||
import v8_suppressions
|
||||
|
||||
CONFIGS = dict(
|
||||
default=[],
|
||||
default=[
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
ignition=[
|
||||
'--turbo-filter=~',
|
||||
'--noopt',
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
ignition_asm=[
|
||||
'--turbo-filter=~',
|
||||
@ -37,15 +40,20 @@ CONFIGS = dict(
|
||||
'--noopt',
|
||||
'--no-lazy',
|
||||
'--no-lazy-inner-functions',
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
ignition_turbo=[
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
ignition_turbo=[],
|
||||
ignition_turbo_opt=[
|
||||
'--always-opt',
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
ignition_turbo_opt_eager=[
|
||||
'--always-opt',
|
||||
'--no-lazy',
|
||||
'--no-lazy-inner-functions',
|
||||
'--suppress-asm-messages',
|
||||
],
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user