test: rename always-opt flag to always-turbofan
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/3610431 PR-URL: https://github.com/nodejs/node/pull/44741 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
1acf0339dd
commit
b5f1564880
@ -61,7 +61,7 @@ const perfCompiledFramesArgs = [
|
|||||||
'--',
|
'--',
|
||||||
process.execPath,
|
process.execPath,
|
||||||
...nodeCommonFlags,
|
...nodeCommonFlags,
|
||||||
'--always-opt',
|
'--always-turbofan',
|
||||||
fixtures.path('linux-perf.js'),
|
fixtures.path('linux-perf.js'),
|
||||||
`${sleepTime}`,
|
`${sleepTime}`,
|
||||||
`${repeat}`,
|
`${repeat}`,
|
||||||
|
@ -1616,9 +1616,9 @@ def Main():
|
|||||||
if options.check_deopts:
|
if options.check_deopts:
|
||||||
options.node_args.append("--trace-opt")
|
options.node_args.append("--trace-opt")
|
||||||
options.node_args.append("--trace-file-names")
|
options.node_args.append("--trace-file-names")
|
||||||
# --always-opt is needed because many tests do not run long enough for the
|
# --always-turbofan is needed because many tests do not run long enough for
|
||||||
# optimizer to kick in, so this flag will force it to run.
|
# the optimizer to kick in, so this flag will force it to run.
|
||||||
options.node_args.append("--always-opt")
|
options.node_args.append("--always-turbofan")
|
||||||
options.progress = "deopts"
|
options.progress = "deopts"
|
||||||
|
|
||||||
if options.worker:
|
if options.worker:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user