Lines Matching refs:tests
9 const tests = Object.create(null);
270 tests.access = wrapper(access);
271 tests.chmod = wrapper(chmod);
272 tests.chown = wrapper(chown, { uid, gid });
273 tests.close = wrapper(close);
274 tests.copyfile = wrapper(copyfile);
275 tests.fchmod = wrapper(fchmod);
276 tests.fchown = wrapper(fchown, { uid, gid });
277 tests.fdatasync = wrapper(fdatasync);
278 tests.fstat = wrapper(fstat);
279 tests.fsync = wrapper(fsync);
280 tests.ftruncate = wrapper(ftruncate);
281 tests.futime = wrapper(futime);
282 tests.lutime = wrapper(lutime);
283 tests.lchown = wrapper(lchown, { uid, gid });
284 tests.link = wrapper(link);
285 tests.lstat = wrapper(lstat);
286 tests.mkdir = wrapper(mkdir);
287 tests.mkdtemp = wrapper(mktmp);
288 tests.open = wrapper(open);
289 tests.read = wrapper(read);
290 tests.scandir = wrapper(readdir);
291 tests.opendir = wrapper(opendir);
292 tests.realpath = wrapper(realpath);
293 tests.rename = wrapper(rename);
294 tests.rmdir = wrapper(rmdir);
295 tests.stat = wrapper(stat);
296 tests.unlink = wrapper(unlink);
297 tests.utime = wrapper(utime);
298 tests.write = wrapper(write);
301 // We'll only try to run these tests if we have enough privileges.
303 tests.symlink = wrapper(symlink);
304 tests.readlink = wrapper(readlink);
310 for (const tr in tests) {
314 '-e', tests[tr] ],