# HG changeset patch # User ysuenaga # Date 1458012446 -32400 # Node ID 0524979ef11e67afb14e199eefe232e5c9cb30de # Parent 341fa2e9011fa0a530b805579bf77337e3a1b3ef 8151709: jhsdb should show help message in SALauncher. Reviewed-by: dsamersoff diff -r 341fa2e9011f -r 0524979ef11e jdk/test/sun/tools/jhsdb/SAGetoptTest.java --- a/jdk/test/sun/tools/jhsdb/SAGetoptTest.java Fri Mar 04 18:13:04 2016 +0900 +++ b/jdk/test/sun/tools/jhsdb/SAGetoptTest.java Tue Mar 15 12:27:26 2016 +0900 @@ -152,5 +152,8 @@ String[] optionSet6 = {"--exe", "--core", "bla_core"}; badOptionsTest(6, optionSet6, "Argument is expected for 'exe'"); + + String[] optionSet7 = {"--exe"}; + badOptionsTest(7, optionSet7, "Argument is expected for 'exe'"); } }