# HG changeset patch # User bpb # Date 1468019805 25200 # Node ID b7e01947fa54599dffecf3091a42b31ffe4230eb # Parent e6ec33bddfcc07f758eb4df7999bd858113a98b1 8157287: java/nio/file/FileStore/Basic.java failed with "java.nio.file.AccessDeniedException : /zones/zoneone/root " Summary: Ignore AccessDeniedException when testing space attributes. Reviewed-by: alanb diff -r e6ec33bddfcc -r b7e01947fa54 jdk/test/java/nio/file/FileStore/Basic.java --- a/jdk/test/java/nio/file/FileStore/Basic.java Fri Jul 08 14:42:50 2016 -0700 +++ b/jdk/test/java/nio/file/FileStore/Basic.java Fri Jul 08 16:16:45 2016 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -124,6 +124,12 @@ // ignore exception as the store could have been // deleted since the iterator was instantiated System.err.format("%s was not found\n", store); + } catch (AccessDeniedException ade) { + // ignore exception as the lack of ability to access the + // store due to lack of file permission or similar does not + // reflect whether the space attributes would be accessible + // were access to be permitted + System.err.format("%s is inaccessible\n", store); } // two distinct FileStores should not be equal