mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2a17c7f65e
These are the core changes that allow AIX to compile. There are still some test failures as there are some patches needed for libuv and npm that we'll need to contribute through those communities but this set allows node to be built on AIX and pass most of the core tests The change in js2c is because AIX does not support $ in identifier names. See the discussion/agreement in https://github.com/nodejs/node/issues/2272 PR-URL: https://github.com/nodejs/node/pull/2364 Reviewed-By: Ben Noordhuis <ben@strongloop.com> Reviewed-By: Rod Vagg <r@va.gg>
35 lines
939 B
JavaScript
35 lines
939 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
// simulate `cat readfile.js | node readfile.js`
|
|
|
|
if (common.isWindows || common.isAix) {
|
|
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
|
|
return;
|
|
}
|
|
|
|
var fs = require('fs');
|
|
|
|
var dataExpected = fs.readFileSync(__filename, 'utf8');
|
|
|
|
if (process.argv[2] === 'child') {
|
|
fs.readFile('/dev/stdin', function(er, data) {
|
|
if (er) throw er;
|
|
process.stdout.write(data);
|
|
});
|
|
return;
|
|
}
|
|
|
|
var exec = require('child_process').exec;
|
|
var f = JSON.stringify(__filename);
|
|
var node = JSON.stringify(process.execPath);
|
|
var cmd = 'cat ' + f + ' | ' + node + ' ' + f + ' child';
|
|
exec(cmd, function(err, stdout, stderr) {
|
|
if (err) console.error(err);
|
|
assert(!err, 'it exits normally');
|
|
assert(stdout === dataExpected, 'it reads the file and outputs it');
|
|
assert(stderr === '', 'it does not write to stderr');
|
|
console.log('ok');
|
|
});
|