diff -r 3f4b89a17892 -r 0d9dee001667 test/langtools/jdk/javadoc/doclet/testRelativeLinks/TestRelativeLinks.java --- a/test/langtools/jdk/javadoc/doclet/testRelativeLinks/TestRelativeLinks.java Tue Jan 29 15:19:43 2019 +0100 +++ b/test/langtools/jdk/javadoc/doclet/testRelativeLinks/TestRelativeLinks.java Wed Jan 30 16:39:26 2019 +0530 @@ -102,28 +102,6 @@ "relative package link"); } - @Test - public void test_html4() { - javadoc("-d", "out-html4", - "-html4", - "-use", - "-sourcepath", testSrc, - "pkg", "pkg2"); - checkExit(Exit.OK); - } - - @Override - public void checkLinks() { - // since the test uses explicit links to non-existent files, - // we create those files to avoid false positive errors from checkLinks - touch("pkg/relative-class-link.html"); - touch("pkg/relative-field-link.html"); - touch("pkg/relative-method-link.html"); - touch("pkg/relative-package-link.html"); - touch("pkg/relative-multi-line-link.html"); - super.checkLinks(); - } - private void touch(String file) { File f = new File(outputDir, file); out.println("touch " + f);