Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions guava-tests/test/com/google/common/io/MoreFilesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,9 @@ public void testCreateParentDirectories_noPermission() {
if (isWindows()) {
return; // TODO: b/136041958 - Create/find a directory that we don't have permissions on?
}
if ("root".equals(System.getProperty("user.name"))) {
return; // Root bypasses filesystem permission checks, so the test expectation doesn't hold.
}
Path file = root().resolve("parent/nonexistent.file");
Path parent = file.getParent();
assertFalse(Files.exists(parent));
Expand Down