forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: fix
--prof-process
CLI argument handling
Make sure that options after `--prof-process` are not treated as Node.js options. Fixes: nodejs#22786
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
'use strict'; | ||
require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const fs = require('fs'); | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
tmpdir.refresh(); | ||
process.chdir(tmpdir.path); | ||
|
||
// Generate log file. | ||
spawnSync(process.execPath, [ '--prof', '-p', '42' ]); | ||
|
||
const logfile = fs.readdirSync('.').filter((name) => name.endsWith('.log'))[0]; | ||
assert(logfile); | ||
|
||
// Make sure that the --preprocess argument is passed through correctly. | ||
const { stdout } = spawnSync( | ||
process.execPath, | ||
[ '--prof-process', '--preprocess', logfile ], | ||
{ encoding: 'utf8' }); | ||
|
||
// Make sure that the result is valid JSON. | ||
JSON.parse(stdout); |