Path: blob/master/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/TestDescription.java
40951 views
/*1* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/222324/*25* @test26*27* @summary converted from VM Testbase nsk/jvmti/AttachOnDemand/attach002a.28* VM Testbase keywords: [quick, jpda, jvmti, noras, redefine, feature_282, vm6, jdk]29* VM Testbase readme:30* Description :31* Test tries to load jvmti agent to the VM after the VM has started using32* Attach API (com.sun.tools.attach).33* Test is based on the nsk.share.aod framework. In the terms of this framework34* java application running in the VM where agent is loaded to is called 'target application'.35* This is regression test for "5002268: Allow class sharing use with RedefineClasses".36* Test tries to redefine class java.lang.InterruptedException (class from the system jar which37* is included in the shared archive).38* (5002268 was fixed in JDK6 b86, with earlier builds this test fails because of JVMTI function39* RedefineClasses fails with error JVMTI_ERROR_UNMODIFIABLE_CLASS).40* Test scenario:41* - during initialization agent tries to get capabilities 'can_generate_vm_object_alloc_events'42* and 'can_redefine_classes' and enables VMObjectAlloc events43* - target application creates instance of InterruptedException using InterruptedException.class.newInstance,44* after this agent should receive VMObjectAlloc event45* - agent receives VMObjectAlloc event, redefines InterruptedException class and finishes work46* - target application creates one more instance of Interrupted exception and checks that redefinition47* really had effect48*49* @library /vmTestbase50* /test/lib51* @build nsk.share.aod.AODTestRunner52*53* @comment compile newclassXX to bin/newclassXX54* @run driver ExecDriver --cmd55* ${compile.jdk}/bin/javac56* --patch-module java.base=${test.src}/newclass00/java.base57* -d bin/newclass0058* ${test.src}/newclass00/java.base/java/lang/InterruptedException.java59*60* @build nsk.jvmti.AttachOnDemand.attach002a.attach002aTarget61* @run main/othervm/native62* nsk.share.aod.AODTestRunner63* -jdk ${test.jdk}64* -target nsk.jvmti.AttachOnDemand.attach002a.attach002aTarget65* -javaOpts="-XX:+UsePerfData ${test.vm.opts} ${test.java.opts}"66* -na attach002aAgent00=-pathToNewByteCode=./bin/newclass0067*/68697071