From 09fe4113bba45d59b56bf08b341d3b8d0d45bc05 Mon Sep 17 00:00:00 2001 From: tschatzl Date: Tue, 14 May 2013 17:08:31 +0200 Subject: [PATCH] 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 --- test/gc/arguments/TestCMSHeapSizeFlags.java | 4 ++-- test/gc/arguments/TestG1HeapSizeFlags.java | 2 +- test/gc/arguments/TestParallelHeapSizeFlags.java | 2 +- test/gc/arguments/TestSerialHeapSizeFlags.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/gc/arguments/TestCMSHeapSizeFlags.java b/test/gc/arguments/TestCMSHeapSizeFlags.java index a8b51c571..3dc688ce8 100644 --- a/test/gc/arguments/TestCMSHeapSizeFlags.java +++ b/test/gc/arguments/TestCMSHeapSizeFlags.java @@ -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 --git a/test/gc/arguments/TestG1HeapSizeFlags.java b/test/gc/arguments/TestG1HeapSizeFlags.java index 42f79465d..31ab5e333 100644 --- a/test/gc/arguments/TestG1HeapSizeFlags.java +++ b/test/gc/arguments/TestG1HeapSizeFlags.java @@ -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 --git a/test/gc/arguments/TestParallelHeapSizeFlags.java b/test/gc/arguments/TestParallelHeapSizeFlags.java index 8609b33c3..2de2826ed 100644 --- a/test/gc/arguments/TestParallelHeapSizeFlags.java +++ b/test/gc/arguments/TestParallelHeapSizeFlags.java @@ -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 --git a/test/gc/arguments/TestSerialHeapSizeFlags.java b/test/gc/arguments/TestSerialHeapSizeFlags.java index 3b833f16c..967adf641 100644 --- a/test/gc/arguments/TestSerialHeapSizeFlags.java +++ b/test/gc/arguments/TestSerialHeapSizeFlags.java @@ -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 */ -- GitLab