mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
21 lines
468 B
JavaScript
21 lines
468 B
JavaScript
process.mixin(require("./common"));
|
|
var testTxt = path.join(fixturesDir, "x.txt");
|
|
var fs = require('fs');
|
|
|
|
setTimeout(function () {
|
|
// put this in a timeout, just so it doesn't get bunched up with the
|
|
// require() calls..
|
|
N = 30;
|
|
for (var i=0; i < N; i++) {
|
|
puts("start " + i);
|
|
fs.cat(testTxt).addCallback(function(data) {
|
|
puts("finish");
|
|
}).addErrback(function (e) {
|
|
puts("error! " + e);
|
|
process.exit(1);
|
|
});
|
|
}
|
|
}, 100);
|
|
|
|
|