< prev index next >

test/jdk/java/lang/instrument/DaemonThread/TestDaemonThread.java

Print this page
rev 51638 : [mq]: 8210112


   7  * under the terms of the GNU General Public License version 2 only, as
   8  * published by the Free Software Foundation.
   9  *
  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  */
  24 /* @test
  25  * @bug 7142035
  26  * @summary Assert in java.lang.instrument agents during shutdown when classloading occurs after shutdown
  27  * @library /lib/testlibrary
  28  *
  29  * @modules java.instrument
  30  *          java.management
  31  * @build jdk.testlibrary.* DummyAgent DummyClass TestDaemonThreadLauncher TestDaemonThread
  32  * @run shell ../MakeJAR3.sh DummyAgent
  33  * @run main/timeout=240 TestDaemonThreadLauncher
  34  *
  35  */
  36 import java.io.File;
  37 import java.net.URL;
  38 import java.net.URLClassLoader;
  39 
  40 public class TestDaemonThread implements Runnable{
  41     File classpath;
  42 
  43     public TestDaemonThread(File classpath) {
  44         this.classpath = classpath;
  45     }
  46 
  47     @Override
  48     public void run() {
  49 
  50 
  51         try {




   7  * under the terms of the GNU General Public License version 2 only, as
   8  * published by the Free Software Foundation.
   9  *
  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  */
  24 /* @test
  25  * @bug 7142035
  26  * @summary Assert in java.lang.instrument agents during shutdown when classloading occurs after shutdown
  27  * @library /test/lib
  28  *
  29  * @modules java.instrument
  30  *          java.management
  31  * @build DummyAgent DummyClass TestDaemonThreadLauncher TestDaemonThread
  32  * @run shell ../MakeJAR3.sh DummyAgent
  33  * @run main/timeout=240 TestDaemonThreadLauncher
  34  *
  35  */
  36 import java.io.File;
  37 import java.net.URL;
  38 import java.net.URLClassLoader;
  39 
  40 public class TestDaemonThread implements Runnable{
  41     File classpath;
  42 
  43     public TestDaemonThread(File classpath) {
  44         this.classpath = classpath;
  45     }
  46 
  47     @Override
  48     public void run() {
  49 
  50 
  51         try {


< prev index next >