src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_join02.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_join02.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  * This test sleeps the thread that is joined to, which should ensure that the joining thread
  26  * actually does wait for completeion.
  27  */
  28 package org.graalvm.compiler.jtt.threads;
  29 
  30 import org.junit.Test;
  31 
  32 import org.graalvm.compiler.jtt.JTTTest;

  33 
  34 public class Thread_join02 extends JTTTest {
  35 
  36     private static class TestClass implements Runnable {
  37         @Override
  38         public void run() {
  39             try {
  40                 Thread.sleep(200);
  41             } catch (InterruptedException ex) {
  42             }
  43             cont = false;
  44         }
  45     }
  46 
  47     static volatile boolean cont;
  48 
  49     public static boolean test() throws InterruptedException {
  50         cont = true;
  51         final Thread thread = new Thread(new TestClass());
  52         thread.start();
  53         thread.join();
  54         return cont;
  55     }
  56 
  57     @Test(timeout = 20000)
  58     public void run0() throws Throwable {

  59         runTest("test");
  60     }
  61 
  62 }


  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  * This test sleeps the thread that is joined to, which should ensure that the joining thread
  26  * actually does wait for completeion.
  27  */
  28 package org.graalvm.compiler.jtt.threads;
  29 


  30 import org.graalvm.compiler.jtt.JTTTest;
  31 import org.junit.Test;
  32 
  33 public class Thread_join02 extends JTTTest {
  34 
  35     private static class TestClass implements Runnable {
  36         @Override
  37         public void run() {
  38             try {
  39                 Thread.sleep(200);
  40             } catch (InterruptedException ex) {
  41             }
  42             cont = false;
  43         }
  44     }
  45 
  46     static volatile boolean cont;
  47 
  48     public static boolean test() throws InterruptedException {
  49         cont = true;
  50         final Thread thread = new Thread(new TestClass());
  51         thread.start();
  52         thread.join();
  53         return cont;
  54     }
  55 
  56     @Test(timeout = 20000)
  57     public void run0() throws Throwable {
  58         initializeForTimeout();
  59         runTest("test");
  60     }
  61 
  62 }
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_join02.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File