Skip to content

Commit

Permalink
Backport 83bce94cc8a7fb45b0604598411fbecc62000dfd
Browse files Browse the repository at this point in the history
  • Loading branch information
ktakakuri committed Jun 4, 2024
1 parent 7db72a8 commit 32b02f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jdk/test/javax/xml/jaxp/transform/8268457/SurrogateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ public void startElement(String uri, String localName, String qName, Attributes
}
}

public static void main(String[] args) throws Exception {
SurrogateTest test = new SurrogateTest();
test.toHTMLTest();
test.handlerTest();
}

/**
* Compare contents of golden file with test output file line by line.
* return true if they're identical.
Expand Down Expand Up @@ -153,10 +159,4 @@ public static boolean compareStringWithGold(String goldfile, String string)
Collectors.joining(System.getProperty("line.separator")))
.equals(string);
}

public static void main(String[] args) throws Exception {
SurrogateTest test = new SurrogateTest();
test.toHTMLTest();
test.handlerTest();
}
}

0 comments on commit 32b02f5

Please sign in to comment.