aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-tracing-no-crash.js
blob: 5b11522911e75ddf49aaf9ca21d080177ce982f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';
const common = require('../common');
const assert = require('assert');
const { spawn } = require('child_process');

function CheckNoSignalAndErrorCodeOne(code, signal) {
  assert.strictEqual(signal, null);
  assert.strictEqual(code, 1);
}

const child = spawn(process.execPath,
                    ['--trace-event-categories', 'madeup', '-e',
                     'throw new Error()'], { stdio: 'inherit' });
child.on('exit', common.mustCall(CheckNoSignalAndErrorCodeOne));