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.
29 lines
695 B
29 lines
695 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const child_process = require('child_process');
|
|
|
|
const wrong_script = path.join(common.fixturesDir, 'cert.pem');
|
|
|
|
const p = child_process.spawn(process.execPath, [
|
|
'-e',
|
|
'require(process.argv[1]);',
|
|
wrong_script
|
|
]);
|
|
|
|
p.stdout.on('data', function(data) {
|
|
common.fail('Unexpected stdout data: ' + data);
|
|
});
|
|
|
|
let output = '';
|
|
|
|
p.stderr.on('data', function(data) {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(/BEGIN CERT/.test(output));
|
|
assert(/^\s+\^/m.test(output));
|
|
assert(/Invalid left-hand side expression in prefix operation/.test(output));
|
|
});
|
|
|