| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 12f19a6 commit 46b5915
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,6 +26,11 @@ const nm = spawnSync('nm', args); | |||
| 26 | 26 | if (nm.error && nm.error.errno === 'ENOENT') | |
| 27 | 27 | common.skip('nm not found on system'); | |
| 28 | 28 | ||
| 29 | + const stderr = nm.stderr.toString(); | ||
| 30 | + if (stderr.length > 0) { | ||
| 31 | + common.skip(`Failed to execute nm: ${stderr}`); | ||
| 32 | + } | ||
| 33 | + | ||
| 29 | 34 | const symbolRe = /\s_?(v8dbg_.+)$/; | |
| 30 | 35 | const symbols = nm.stdout.toString().split('\n').reduce((filtered, line) => { | |
| 31 | 36 | const match = line.match(symbolRe); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments