node: do not ever close stdio
authorFedor Indutny <fedor.indutny@gmail.com>
Thu, 23 Jan 2014 09:35:18 +0000 (13:35 +0400)
committerFedor Indutny <fedor.indutny@gmail.com>
Thu, 30 Jan 2014 17:26:19 +0000 (21:26 +0400)
commite796e11087f1f6d04422d52ac333cc0fc0862750
tree4db581b770f1dec9cd045951f166cce87959b196
parenta98d541733336aa1e804e8397bf4e202a7150473
node: do not ever close stdio

Even if stdio streams are opened as file streams, we should not ever try
to close them. This could be accomplished by passing `autoClose: false`
in options on their creation.
lib/fs.js
src/node.js
test/fixtures/echo-close-check.js [new file with mode: 0644]
test/simple/test-stdin-from-file.js