langtools/test/tools/javac/api/6411310/T6411310.java
changeset 3995 73af8b6fb8bc
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
--- a/langtools/test/tools/javac/api/6411310/T6411310.java	Wed Sep 23 18:29:41 2009 -0700
+++ b/langtools/test/tools/javac/api/6411310/T6411310.java	Wed Sep 23 18:48:13 2009 -0700
@@ -37,7 +37,7 @@
 import static javax.tools.StandardLocation.CLASS_PATH;
 import static javax.tools.JavaFileObject.Kind.CLASS;
 
-// Limited test while we wait for 6419926
+// Limited test while we wait for 6419926: 6419926 is now closed
 
 public class T6411310 extends ToolTester {
 
@@ -45,8 +45,11 @@
         JavaFileObject file = fm.getJavaFileForInput(PLATFORM_CLASS_PATH,
                                                      "java.lang.Object",
                                                      CLASS);
-        if (!file.getName().equals("Object.class"))
+        String fileName = file.getName();
+        if (!fileName.matches(".*java/lang/Object.class\\)?")) {
+            System.err.println(fileName);
             throw new AssertionError(file);
+        }
     }
 
     public static void main(String... args) throws IOException {