mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
ef65321083
Put the `...^` arrow string to the hidden property of the object, and use it only when printing error to the stderr. Fix: https://github.com/nodejs/io.js/issues/2104 PR-URL: https://github.com/nodejs/io.js/pull/2108 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
30 lines
685 B
JavaScript
30 lines
685 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
var child_process = require('child_process');
|
|
|
|
var wrong_script = path.join(common.fixturesDir, 'cert.pem');
|
|
|
|
var p = child_process.spawn(process.execPath, [
|
|
'-e',
|
|
'require(process.argv[1]);',
|
|
wrong_script
|
|
]);
|
|
|
|
p.stdout.on('data', function(data) {
|
|
assert(false, 'Unexpected stdout data: ' + data);
|
|
});
|
|
|
|
var 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));
|
|
});
|