Revert "test: add test cases for fsPromises"

This reverts commit c05c73a634e3a88372e32e500f462851add7ea66.

The commit breaks Raspberry Pi CI.

PR-URL: https://github.com/nodejs/node/pull/19101
Ref: https://github.com/nodejs/node/pull/19064#issuecomment-370092633
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Rich Trott 2018-03-02 16:03:38 -08:00
parent c05c73a634
commit 4bfc03b57d

View File

@ -9,10 +9,8 @@ const fsPromises = require('fs/promises');
const { const {
access, access,
chmod, chmod,
chown,
copyFile, copyFile,
fchmod, fchmod,
fchown,
fdatasync, fdatasync,
fstat, fstat,
fsync, fsync,
@ -29,8 +27,6 @@ const {
realpath, realpath,
rename, rename,
rmdir, rmdir,
lchmod,
lchown,
stat, stat,
symlink, symlink,
write, write,
@ -99,21 +95,6 @@ function verifyStatObject(stat) {
await chmod(dest, 0o666); await chmod(dest, 0o666);
await fchmod(handle, 0o666); await fchmod(handle, 0o666);
// lchmod is only available on OSX
if (common.isOSX) {
await lchmod(dest, 0o666);
}
if (!common.isWindows) {
const gid = process.getgid();
const uid = process.getuid();
await chown(dest, uid, gid);
await fchown(handle, uid, gid);
// lchown is only available on OSX
if (common.isOSX) {
await lchown(dest, uid, gid);
}
}
await utimes(dest, new Date(), new Date()); await utimes(dest, new Date(), new Date());