-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: #22786 PR-URL: #22790 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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
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,34 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const fs = require('fs'); | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
if (!common.isMainThread) | ||
common.skip('chdir not available in workers'); | ||
if (!common.enoughTestMem) | ||
common.skip('skipped due to memory requirements'); | ||
if (common.isAIX) | ||
common.skip('does not work on AIX'); | ||
|
||
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, | ||
// as an example flag listed in deps/v8/tools/tickprocessor.js. | ||
// Any of the other flags there should work for this test too, if --preprocess | ||
// is ever removed. | ||
const { stdout } = spawnSync( | ||
process.execPath, | ||
[ '--prof-process', '--preprocess', logfile ], | ||
{ encoding: 'utf8' }); | ||
|
||
// Make sure that the result is valid JSON. | ||
JSON.parse(stdout); |