From 67117dad7fed64c85eebd488b76826f2fcdfa7ab Mon Sep 17 00:00:00 2001 From: bpb Date: Fri, 8 Jul 2016 16:16:45 -0700 Subject: [PATCH] 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 --- test/java/nio/file/FileStore/Basic.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/java/nio/file/FileStore/Basic.java b/test/java/nio/file/FileStore/Basic.java index 45f60657e..a068bf8bc 100644 --- a/test/java/nio/file/FileStore/Basic.java +++ b/test/java/nio/file/FileStore/Basic.java @@ -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 @@ -123,6 +123,12 @@ public class Basic { // 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 -- GitLab