mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
540 B
21 lines
540 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
const path = require('path');
|
|
|
|
const fixture = path.join(common.fixturesDir, 'exit.js');
|
|
|
|
{
|
|
execFile(
|
|
process.execPath,
|
|
[fixture, 42],
|
|
common.mustCall((e) => {
|
|
// Check that arguments are included in message
|
|
assert.strictEqual(e.message.trim(),
|
|
`Command failed: ${process.execPath} ${fixture} 42`);
|
|
assert.strictEqual(e.code, 42);
|
|
})
|
|
);
|
|
}
|
|
|