< prev index next >

test/sun/tools/jhsdb/SAGetoptTest.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25  /*
  26  * @test
  27  * @summary unit test for SAGetopt function

  28  * @modules jdk.hotspot.agent/sun.jvm.hotspot

  29  * @compile -XDignore.symbol.file SAGetoptTest.java
  30  * @run main SAGetoptTest
  31  */
  32 
  33 import sun.jvm.hotspot.SAGetopt;
  34 
  35 public class SAGetoptTest {
  36 
  37     private static boolean a_opt;
  38     private static boolean b_opt;
  39     private static boolean c_opt;
  40     private static boolean e_opt;
  41     private static boolean mixed_opt;
  42 
  43     private static String  d_value;
  44     private static String  exe_value;
  45     private static String  core_value;
  46 
  47     private static void initArgValues() {
  48         a_opt = false;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25  /*
  26  * @test
  27  * @summary unit test for SAGetopt function
  28  *
  29  * @modules jdk.hotspot.agent/sun.jvm.hotspot
  30  *
  31  * @compile -XDignore.symbol.file SAGetoptTest.java
  32  * @run main SAGetoptTest
  33  */
  34 
  35 import sun.jvm.hotspot.SAGetopt;
  36 
  37 public class SAGetoptTest {
  38 
  39     private static boolean a_opt;
  40     private static boolean b_opt;
  41     private static boolean c_opt;
  42     private static boolean e_opt;
  43     private static boolean mixed_opt;
  44 
  45     private static String  d_value;
  46     private static String  exe_value;
  47     private static String  core_value;
  48 
  49     private static void initArgValues() {
  50         a_opt = false;


< prev index next >