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.

22 lines
571 B

node.mixin(require("common.js"));
var path = node.path.join(fixturesDir, "write.txt");
var expected = "hello";
var found;
posix.open(path, node.O_WRONLY | node.O_TRUNC | node.O_CREAT, 0644).addCallback(function (file) {
posix.write(file, expected, 0, "utf8").addCallback(function() {
posix.close(file).addCallback(function() {
posix.cat(path, node.UTF8).addCallback(function(contents) {
found = contents;
posix.unlink(path).wait();
});
});
});
});
process.addListener("exit", function () {
assertEquals(expected, found);
});