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.
19 lines
535 B
19 lines
535 B
15 years ago
|
require('../common');
|
||
|
var path = require('path')
|
||
|
, childProccess = require('child_process')
|
||
|
, fs = require('fs')
|
||
|
, stdoutScript = path.join(path.dirname(__dirname), 'fixtures/stdout.js')
|
||
|
, tmpFile = path.join(path.dirname(__dirname), 'fixtures/stdout.txt')
|
||
|
, cmd = process.argv[0]+' '+stdoutScript+' > '+tmpFile;
|
||
|
|
||
|
try {
|
||
|
fs.unlinkSync(tmpFile);
|
||
|
} catch (e) {}
|
||
|
|
||
|
childProccess.exec(cmd, function(err) {
|
||
|
if (err) throw err;
|
||
|
|
||
|
var data = fs.readFileSync(tmpFile);
|
||
|
assert.equal(data, "test\n");
|
||
|
fs.unlinkSync(tmpFile);
|
||
|
});
|