test: spawn process.argv[0], not 'node'

'node' may or may not be on the path and may or may not be the version we are
running the test suite for.
This commit is contained in:
Ben Noordhuis 2011-10-25 02:23:07 +02:00
Родитель 58cb0fa639
Коммит dddfd0f8b8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,7 @@ var assert = require('assert')
var spawn = require('child_process').spawn;
var common = require('../common');
var child = spawn('node', [path.join(common.fixturesDir, 'GH-1899-output.js')]);
var child = spawn(process.argv[0], [path.join(common.fixturesDir, 'GH-1899-output.js')]);
var output = '';
child.stdout.on('data', function (data) {