pull/20/head
Mathias Buus 4 years ago
parent d309c2d741
commit 258346d835

@ -370,6 +370,7 @@ FUSE_METHOD(read, 6, 1, (const char *path, char *buf, size_t len, off_t offset,
l->path = path;
l->buf = buf;
l->len = len;
printf("making a buffer %zu %zu\n", buf, len);
l->offset = offset;
l->info = info;
}, {

@ -17,7 +17,7 @@ tape('read', function (t) {
t.same(fd, 42, 'fd was passed to release')
}
})
const fuse = new Fuse(mnt, testFS, { debug: true })
const fuse = new Fuse(mnt, testFS, { debug: false })
fuse.mount(function (err) {
t.error(err, 'no error')

Loading…
Cancel
Save