Browse Source

src: --abort-on-uncaught-exception in NODE_OPTIONS

Allow --abort-on-uncaught-exception in NODE_OPTIONS, its useful to
enable for post-mortem debugging.

PR-URL: https://github.com/nodejs/node/pull/13932
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6
Sam Roberts 8 years ago
parent
commit
c45df83b54
  1. 1
      doc/api/cli.md
  2. 1
      src/node.cc
  3. 1
      test/parallel/test-cli-node-options.js

1
doc/api/cli.md

@ -457,6 +457,7 @@ Node options that are allowed are:
- `--zero-fill-buffers`
V8 options that are allowed are:
- `--abort-on-uncaught-exception`
- `--max_old_space_size`
### `NODE_PENDING_DEPRECATION=1`

1
src/node.cc

@ -3766,6 +3766,7 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env,
"--icu-data-dir",
// V8 options
"--abort-on-uncaught-exception",
"--max_old_space_size",
};

1
test/parallel/test-cli-node-options.js

@ -40,6 +40,7 @@ function disallow(opt) {
const printA = require.resolve('../fixtures/printA.js');
expect('--abort-on-uncaught-exception', 'B\n');
expect(`-r ${printA}`, 'A\nB\n');
expect('--no-deprecation', 'B\n');
expect('--no-warnings', 'B\n');

Loading…
Cancel
Save