File tree 1 file changed +6
-0
lines changed
guava-tests/test/com/google/common/io
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -262,6 +262,9 @@ public void testTouchTime() throws IOException {
262
262
}
263
263
264
264
public void testCreateParentDirectories_root () throws IOException {
265
+ if (isWindows ()) {
266
+ return ; // TODO: b/136041958 - *Sometimes* fails with "A:\: The device is not ready"
267
+ }
265
268
Path root = root ();
266
269
assertNull (root .getParent ());
267
270
assertNull (root .toRealPath ().getParent ());
@@ -329,6 +332,9 @@ public void testCreateParentDirectories_nonDirectoryParentExists() throws IOExce
329
332
}
330
333
331
334
public void testCreateParentDirectories_symlinkParentExists () throws IOException {
335
+ if (isWindows ()) {
336
+ return ; // TODO: b/136041958 - *Sometimes* fails with FileAlreadyExistsException
337
+ }
332
338
Path symlink = tempDir .resolve ("linkToDir" );
333
339
Files .createSymbolicLink (symlink , root ());
334
340
Path file = symlink .resolve ("foo" );
You can’t perform that action at this time.
0 commit comments