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.
32 lines
662 B
32 lines
662 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (common.isWindows || common.isAIX)
|
|
common.skip(`No /dev/stdin on ${process.platform}.`);
|
|
|
|
const assert = require('assert');
|
|
|
|
const { spawnSync } = require('child_process');
|
|
|
|
for (const code of [
|
|
`require('fs').realpath('/dev/stdin', (err, resolvedPath) => {
|
|
if (err) {
|
|
process.exit(1);
|
|
}
|
|
if (resolvedPath) {
|
|
process.exit(2);
|
|
}
|
|
});`,
|
|
`try {
|
|
if (require('fs').realpathSync('/dev/stdin')) {
|
|
process.exit(2);
|
|
}
|
|
} catch (e) {
|
|
process.exit(1);
|
|
}`
|
|
]) {
|
|
assert.strictEqual(spawnSync(process.execPath, ['-e', code], {
|
|
stdio: 'pipe'
|
|
}).status, 2);
|
|
}
|
|
|