jdk/test/java/nio/file/FileSystem/Basic.java
changeset 3065 452aaa2899fc
parent 2057 3acf8e5e2ca0
child 5506 202f599c92aa
--- a/jdk/test/java/nio/file/FileSystem/Basic.java	Fri Jun 26 18:39:45 2009 -0700
+++ b/jdk/test/java/nio/file/FileSystem/Basic.java	Sat Jun 27 21:46:53 2009 +0100
@@ -22,7 +22,7 @@
  */
 
 /* @test
- * @bug 4313887
+ * @bug 4313887 6838333
  * @summary Unit test for java.nio.file.FileSystem
  * @library ..
  */
@@ -73,10 +73,10 @@
         checkSupported(fs, "basic");
         String os = System.getProperty("os.name");
         if (os.equals("SunOS"))
-            checkSupported(fs, "posix", "unix", "owner", "acl", "xattr");
+            checkSupported(fs, "posix", "unix", "owner", "acl", "user");
         if (os.equals("Linux"))
-            checkSupported(fs, "posix", "unix", "owner", "dos", "xattr");
+            checkSupported(fs, "posix", "unix", "owner", "dos", "user");
         if (os.equals("Windows"))
-            checkSupported(fs, "owner", "dos", "acl", "xattr");
+            checkSupported(fs, "owner", "dos", "acl", "user");
     }
 }