8003649: regression/langtools: tools/javac/doctree

Reviewed-by: ksrini
This commit is contained in:
Jonathan Gibbons 2012-11-20 07:21:07 -08:00
parent 61235e9c09
commit f0fe027b50

View file

@ -176,6 +176,7 @@ public class DocCommentTester {
* Verify the structure of the DocTree AST by comparing it against golden text. * Verify the structure of the DocTree AST by comparing it against golden text.
*/ */
static class ASTChecker extends Checker { static class ASTChecker extends Checker {
static final String NEWLINE = System.getProperty("line.separator");
Printer printer = new Printer(); Printer printer = new Printer();
String source; String source;
@ -197,7 +198,7 @@ public class DocCommentTester {
DocCommentTree dc = trees.getDocCommentTree(path); DocCommentTree dc = trees.getDocCommentTree(path);
printer.print(dc, out); printer.print(dc, out);
out.flush(); out.flush();
String found = out.toString(); String found = out.toString().replace(NEWLINE, "\n");
// Look for the first block comment after the first occurrence of name // Look for the first block comment after the first occurrence of name
int start = source.indexOf("\n/*\n", findName(source, name)); int start = source.indexOf("\n/*\n", findName(source, name));