< prev index next >

test/langtools/jdk/javadoc/tool/CheckResourceKeys.java

Print this page
rev 48074 : 8189102: All tools should support -?, -h and --help
Reviewed-by: kvn, jjg, weijun, alanb, rfield, ksrini

*** 1,7 **** /* ! * Copyright (c) 2010, 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. --- 1,7 ---- /* ! * Copyright (c) 2010, 2017, 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.
*** 115,125 **** return (errors == 0); } void usageTests(boolean xflag) { ! String[] argarray = { xflag ? "-X" : "-help" }; StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); if (jdk.javadoc.internal.tool.Main.execute(argarray, pw) == 0) { pw.flush(); String s = sw.toString(); --- 115,125 ---- return (errors == 0); } void usageTests(boolean xflag) { ! String[] argarray = { xflag ? "-X" : "--help" }; StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); if (jdk.javadoc.internal.tool.Main.execute(argarray, pw) == 0) { pw.flush(); String s = sw.toString();
< prev index next >