# HG changeset patch # User tschatzl # Date 1368544111 -7200 # Node ID 9225624168e2a6504342c357333680110ba43b50 # Parent f6f515533813cd555c12d248585e59aa7cff9cf6 8014489: tests/gc/arguments/Test(Serial|CMS|Parallel|G1)HeapSizeFlags jtreg tests invoke wrong class Summary: Some jtreg tests reference unknown classes in the @run and @build lines. This change fixes them. Reviewed-by: stefank, ehelin diff -r f6f515533813 -r 9225624168e2 hotspot/test/gc/arguments/TestCMSHeapSizeFlags.java --- a/hotspot/test/gc/arguments/TestCMSHeapSizeFlags.java Mon May 13 14:09:05 2013 +0200 +++ b/hotspot/test/gc/arguments/TestCMSHeapSizeFlags.java Tue May 14 17:08:31 2013 +0200 @@ -27,9 +27,9 @@ * @bug 8006088 * @summary Tests argument processing for initial and maximum heap size for the CMS collector * @library /testlibrary /testlibrary/whitebox - * @build TestCMS TestMaxHeapSizeTools + * @build TestCMSHeapSizeFlags TestMaxHeapSizeTools * @run main ClassFileInstaller sun.hotspot.WhiteBox - * @run main/othervm TestCMS + * @run main/othervm TestCMSHeapSizeFlags * @author thomas.schatzl@oracle.com */ diff -r f6f515533813 -r 9225624168e2 hotspot/test/gc/arguments/TestG1HeapSizeFlags.java --- a/hotspot/test/gc/arguments/TestG1HeapSizeFlags.java Mon May 13 14:09:05 2013 +0200 +++ b/hotspot/test/gc/arguments/TestG1HeapSizeFlags.java Tue May 14 17:08:31 2013 +0200 @@ -29,7 +29,7 @@ * @library /testlibrary /testlibrary/whitebox * @build TestG1HeapSizeFlags TestMaxHeapSizeTools * @run main ClassFileInstaller sun.hotspot.WhiteBox - * @run main/othervm TestG1 + * @run main/othervm TestG1HeapSizeFlags * @author thomas.schatzl@oracle.com */ diff -r f6f515533813 -r 9225624168e2 hotspot/test/gc/arguments/TestParallelHeapSizeFlags.java --- a/hotspot/test/gc/arguments/TestParallelHeapSizeFlags.java Mon May 13 14:09:05 2013 +0200 +++ b/hotspot/test/gc/arguments/TestParallelHeapSizeFlags.java Tue May 14 17:08:31 2013 +0200 @@ -30,7 +30,7 @@ * @library /testlibrary /testlibrary/whitebox * @build TestParallelHeapSizeFlags TestMaxHeapSizeTools * @run main ClassFileInstaller sun.hotspot.WhiteBox - * @run main/othervm TestParallel + * @run main/othervm TestParallelHeapSizeFlags * @author thomas.schatzl@oracle.com */ diff -r f6f515533813 -r 9225624168e2 hotspot/test/gc/arguments/TestSerialHeapSizeFlags.java --- a/hotspot/test/gc/arguments/TestSerialHeapSizeFlags.java Mon May 13 14:09:05 2013 +0200 +++ b/hotspot/test/gc/arguments/TestSerialHeapSizeFlags.java Tue May 14 17:08:31 2013 +0200 @@ -29,7 +29,7 @@ * @library /testlibrary /testlibrary/whitebox * @build TestSerialHeapSizeFlags TestMaxHeapSizeTools * @run main ClassFileInstaller sun.hotspot.WhiteBox - * @run main/othervm TestSerial + * @run main/othervm TestSerialHeapSizeFlags * @author thomas.schatzl@oracle.com */