< prev index next >

test/hotspot/jtreg/runtime/cds/redefineClass/RedefineBasicTest.java

Print this page




  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 Run /serviceability/jvmti/RedefineClasses/RedefineRunningMethods in AppCDS mode to
  28  *          make sure class redefinition works with CDS.
  29  * @requires vm.cds
  30  * @library /test/lib /test/hotspot/jtreg/serviceability/jvmti/RedefineClasses /test/hotspot/jtreg/runtime/appcds
  31  * @modules java.compiler
  32  *          java.instrument
  33  *          jdk.jartool/sun.tools.jar
  34  *          java.base/jdk.internal.misc
  35  *          java.management
  36  * @run driver RedefineClassHelper
  37  * @build sun.hotspot.WhiteBox RedefineBasic
  38  * @run driver RedefineBasicTest
  39  */
  40 
  41 import jdk.test.lib.process.OutputAnalyzer;
  42 
  43 public class RedefineBasicTest {
  44     public static String sharedClasses[] = {
  45         "RedefineBasic",
  46         "RedefineBasic_B",
  47         "RedefineBasic$SubclassOfB",
  48         "RedefineBasic$Subclass2OfB",
  49         "RedefineClassHelper",
  50         "jdk/test/lib/compiler/InMemoryJavaCompiler",




  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 Run /serviceability/jvmti/RedefineClasses/RedefineRunningMethods in AppCDS mode to
  28  *          make sure class redefinition works with CDS.
  29  * @requires vm.cds
  30  * @library /test/lib /test/hotspot/jtreg/serviceability/jvmti/RedefineClasses /test/hotspot/jtreg/runtime/cds
  31  * @modules java.compiler
  32  *          java.instrument
  33  *          jdk.jartool/sun.tools.jar
  34  *          java.base/jdk.internal.misc
  35  *          java.management
  36  * @run driver RedefineClassHelper
  37  * @build sun.hotspot.WhiteBox RedefineBasic
  38  * @run driver RedefineBasicTest
  39  */
  40 
  41 import jdk.test.lib.process.OutputAnalyzer;
  42 
  43 public class RedefineBasicTest {
  44     public static String sharedClasses[] = {
  45         "RedefineBasic",
  46         "RedefineBasic_B",
  47         "RedefineBasic$SubclassOfB",
  48         "RedefineBasic$Subclass2OfB",
  49         "RedefineClassHelper",
  50         "jdk/test/lib/compiler/InMemoryJavaCompiler",


< prev index next >