src: allow --perf-basic-prof-only-functions in NODE_OPTIONS
PR-URL: https://github.com/nodejs/node/pull/25565 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
0f0e7f55f8
commit
f5b9a782a9
@ -728,6 +728,7 @@ V8 options that are allowed are:
|
||||
- `--abort-on-uncaught-exception`
|
||||
- `--max-old-space-size`
|
||||
- `--perf-basic-prof`
|
||||
- `--perf-basic-prof-only-functions`
|
||||
- `--perf-prof`
|
||||
- `--stack-trace-limit`
|
||||
|
||||
|
@ -317,6 +317,10 @@ PerIsolateOptionsParser::PerIsolateOptionsParser() {
|
||||
kAllowedInEnvironment);
|
||||
AddOption("--max-old-space-size", "", V8Option{}, kAllowedInEnvironment);
|
||||
AddOption("--perf-basic-prof", "", V8Option{}, kAllowedInEnvironment);
|
||||
AddOption("--perf-basic-prof-only-functions",
|
||||
"",
|
||||
V8Option{},
|
||||
kAllowedInEnvironment);
|
||||
AddOption("--perf-prof", "", V8Option{}, kAllowedInEnvironment);
|
||||
AddOption("--stack-trace-limit", "", V8Option{}, kAllowedInEnvironment);
|
||||
|
||||
|
@ -38,6 +38,7 @@ expect('--trace-event-file-pattern {pid}-${rotation}.trace_events ' +
|
||||
|
||||
if (!common.isWindows) {
|
||||
expect('--perf-basic-prof', 'B\n');
|
||||
expect('--perf-basic-prof-only-functions', 'B\n');
|
||||
}
|
||||
|
||||
if (common.isLinux && ['arm', 'x64'].includes(process.arch)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user