test/jdk/javadoc/doclet/testSupplementary/TestSupplementary.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 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
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -52,18 +52,11 @@
         javadoc("-locale", "en_US",
                 "-d", "out",
                 testSrc("C.java"));
         checkExit(Exit.FAILED);
 
-        checkOutput(Output.WARNING, true,
-            "C.java:38: warning - Tag @see:illegal character: \"119040\" in \"C#method\ud834\udd00()",
-            "C.java:44: warning - illegal character \ud801 in @serialField tag: field\ud801\ud801 int.",
-            "C.java:44: warning - illegal character \ud834\udd7b in @serialField tag: \ud834\udd7bfield int.");
-
-        // TODO: do we need to specify the file and line number in these messages?
-        checkOutput(Output.WARNING,  false,
-            "C.java:14: warning - Tag @see:illegal character",
-            "C.java:19: warning - Tag @see:illegal character",
-            "C.java:24: warning - Tag @see:illegal character",
-            "C.java:31: warning - illegal character");
+        checkOutput(Output.OUT, true,
+            "C.java:36: error: unexpected text",
+            "C.java:41: error: unexpected text",
+            "C.java:42: error: identifier expected");
     }
 }