Skip to content

Commit b5f1564

Browse files
committed
test: rename always-opt flag to always-turbofan
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/3610431 PR-URL: #44741 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 1acf033 commit b5f1564

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/v8-updates/test-linux-perf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const perfCompiledFramesArgs = [
6161
'--',
6262
process.execPath,
6363
...nodeCommonFlags,
64-
'--always-opt',
64+
'--always-turbofan',
6565
fixtures.path('linux-perf.js'),
6666
`${sleepTime}`,
6767
`${repeat}`,

tools/test.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1616,9 +1616,9 @@ def Main():
16161616
if options.check_deopts:
16171617
options.node_args.append("--trace-opt")
16181618
options.node_args.append("--trace-file-names")
1619-
# --always-opt is needed because many tests do not run long enough for the
1620-
# optimizer to kick in, so this flag will force it to run.
1621-
options.node_args.append("--always-opt")
1619+
# --always-turbofan is needed because many tests do not run long enough for
1620+
# the optimizer to kick in, so this flag will force it to run.
1621+
options.node_args.append("--always-turbofan")
16221622
options.progress = "deopts"
16231623

16241624
if options.worker:

0 commit comments

Comments
 (0)