mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
82f067e60b
Paths used on the Windows command line need to be enclosed in double quotes, or they'll be parsed incorrectly when there are spaces in the path. PR-URL: https://github.com/iojs/io.js/pull/1122 Reviewed-by: Bert Belder <bertbelder@gmail.com>
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var exec = require('child_process').exec;
|
|
|
|
var cmd = '"' + process.execPath + '" ' +
|
|
'"' + common.fixturesDir + '/test-regress-GH-4015.js"';
|
|
|
|
exec(cmd, function(err, stdout, stderr) {
|
|
assert(/RangeError: Maximum call stack size exceeded/.test(stderr));
|
|
});
|