Skip to content

Commit

Permalink
test: rename always-opt flag to always-turbofan
Browse files Browse the repository at this point in the history
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/3610431
PR-URL: #44741
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
targos committed Oct 11, 2022
1 parent 1acf033 commit b5f1564
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/v8-updates/test-linux-perf.js
Expand Up @@ -61,7 +61,7 @@ const perfCompiledFramesArgs = [
'--',
process.execPath,
...nodeCommonFlags,
'--always-opt',
'--always-turbofan',
fixtures.path('linux-perf.js'),
`${sleepTime}`,
`${repeat}`,
Expand Down
6 changes: 3 additions & 3 deletions tools/test.py
Expand Up @@ -1616,9 +1616,9 @@ def Main():
if options.check_deopts:
options.node_args.append("--trace-opt")
options.node_args.append("--trace-file-names")
# --always-opt is needed because many tests do not run long enough for the
# optimizer to kick in, so this flag will force it to run.
options.node_args.append("--always-opt")
# --always-turbofan is needed because many tests do not run long enough for
# the optimizer to kick in, so this flag will force it to run.
options.node_args.append("--always-turbofan")
options.progress = "deopts"

if options.worker:
Expand Down

0 comments on commit b5f1564

Please sign in to comment.