TLtest.java: Reduce sleep time.
authorBryce McKinlay <mckinlay@redhat.com>
Wed, 28 Jul 2004 02:44:06 +0000 (02:44 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Wed, 28 Jul 2004 02:44:06 +0000 (03:44 +0100)
2004-07-27  Bryce McKinlay  <mckinlay@redhat.com>

* testsuite/libjava.lang/TLtest.java: Reduce sleep time.
* testsuite/libjava.lang/Thread_Alive.java: Remove old email address.
Reduce sleep time.
* testsuite/libjava.lang/Thread_HoldsLock.java: Modify to work around
compiler bug.
* testsuite/libjava.lang/Thread_Interrupt.java: Remove old email
address. Reduce sleep times. Synchronize with target threads before
attempting to interrupt them. Don't try to calibrate yeild count,
instead, always loop for a fixed time.
* testsuite/libjava.lang/Thread_Join.java: Remove old email address.
* testsuite/libjava.lang/Thread_Monitor.java: Likewise.
* testsuite/libjava.lang/Thread_Wait.java: Likewise.
* testsuite/libjava.lang/Thread_Wait_2.java: Likewise.
* testsuite/libjava.lang/Thread_Wait_Interrupt.java: Likewise.
* testsuite/libjava.lang/pr179.java: Likewise.
* testsuite/libjava.lang/Thread_Sleep.java: Likewise. Reduce sleep
time. Remove upper bounds check on sleep time.

From-SVN: r85248

12 files changed:
libjava/ChangeLog
libjava/testsuite/libjava.lang/TLtest.java
libjava/testsuite/libjava.lang/Thread_Alive.java
libjava/testsuite/libjava.lang/Thread_HoldsLock.java
libjava/testsuite/libjava.lang/Thread_Interrupt.java
libjava/testsuite/libjava.lang/Thread_Join.java
libjava/testsuite/libjava.lang/Thread_Monitor.java
libjava/testsuite/libjava.lang/Thread_Sleep.java
libjava/testsuite/libjava.lang/Thread_Wait.java
libjava/testsuite/libjava.lang/Thread_Wait_2.java
libjava/testsuite/libjava.lang/Thread_Wait_Interrupt.java
libjava/testsuite/libjava.lang/pr179.java

index 2ad34fae6e48f6c2aaa1d4fc0433a3a6db3b1833..09ef462660057b6894fb80c8e609050bbec94ca2 100644 (file)
@@ -1,3 +1,23 @@
+2004-07-27  Bryce McKinlay  <mckinlay@redhat.com>
+
+       * testsuite/libjava.lang/TLtest.java: Reduce sleep time.
+       * testsuite/libjava.lang/Thread_Alive.java: Remove old email address.
+       Reduce sleep time.
+       * testsuite/libjava.lang/Thread_HoldsLock.java: Modify to work around
+       compiler bug.
+       * testsuite/libjava.lang/Thread_Interrupt.java: Remove old email 
+       address. Reduce sleep times. Synchronize with target threads before
+       attempting to interrupt them. Don't try to calibrate yeild count,
+       instead, always loop for a fixed time.
+       * testsuite/libjava.lang/Thread_Join.java: Remove old email address.
+       * testsuite/libjava.lang/Thread_Monitor.java: Likewise.
+       * testsuite/libjava.lang/Thread_Wait.java: Likewise.
+       * testsuite/libjava.lang/Thread_Wait_2.java: Likewise.
+       * testsuite/libjava.lang/Thread_Wait_Interrupt.java: Likewise.
+       * testsuite/libjava.lang/pr179.java: Likewise.
+       * testsuite/libjava.lang/Thread_Sleep.java: Likewise. Reduce sleep
+       time. Remove upper bounds check on sleep time. 
+
 2004-07-27  Bryce McKinlay  <mckinlay@redhat.com>
 
        * testsuite/libjava.lang/Thread_HoldsLock.java: New test case.
index b7f4115b23fbb91493fa81871a4db955c6a77010..6ddd0cbcd89f3ea9d6ee746b0485d39b1c0a97a6 100644 (file)
@@ -46,7 +46,7 @@ class ThreadTest extends Thread {
            d.set (Integer.toString (value));
 
            try {
-               sleep((int)(Math.random() * 500));
+               sleep((int)((Math.random() * 20)));
            } catch (InterruptedException e) {}
        }
 
index d97ea25c5d3c95b7e00ab461bc58cf6e96ca3fec..e885e1624cd1ed0788cdad0d9283b1c89507b202 100644 (file)
@@ -1,6 +1,5 @@
 // Test the status of the isAlive() flag before, during, and after thread 
 // execution. Check that thread's threadgroup is null after thread exits.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 public class Thread_Alive implements Runnable
 {
@@ -12,7 +11,7 @@ public class Thread_Alive implements Runnable
     t.start();
     System.out.println(t.isAlive());
 
-    Thread.sleep(100);
+    Thread.sleep(50);
     
     synchronized (ta)
     {
index 3a46466cb134baf820ad4cfd0a686866fa3e4fb5..62119a16083d6537b44580a4a10227b117d10d5c 100644 (file)
@@ -20,8 +20,8 @@ public class Thread_HoldsLock
   
   public void check()
   {
-    boolean held = Thread.currentThread().holdsLock(lock);
-    System.out.println(held);
+    Thread this_thread = Thread.currentThread();
+    System.out.println(this_thread.holdsLock(lock));
   }
 }
 
index cb569c827c4aa8be028b19cdced4b9125b7a18fb..a69247422fea14e1ca5bd40c3639bcb1d9afe21b 100644 (file)
@@ -1,11 +1,21 @@
 // Test interrupt() behaviour on a thread in wait(), sleep(), and spinning 
 // in a loop.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
-class Waiter extends Thread
+class ThreadBase extends Thread
+{
+  boolean ready = false;
+  
+  synchronized void ready()
+  {
+    ready = true;
+  }
+}
+
+class Waiter extends ThreadBase
 {
   public synchronized void run()
   {
+    super.ready();
     System.out.println ("wait()");
     try
     {
@@ -22,14 +32,15 @@ class Waiter extends Thread
   }
 }
 
-class Sleeper extends Thread
+class Sleeper extends ThreadBase
 {
   public void run()
   {
+    super.ready();
     System.out.println ("sleep()");
     try
     {
-      sleep(2000);
+      sleep(5000);
       System.out.println("Error: sleep() completed normally.");
     }
     catch (InterruptedException x)
@@ -42,40 +53,23 @@ class Sleeper extends Thread
   }
 }
 
-class Looper extends Thread
+class Looper extends ThreadBase
 {
-  // Return the number of Thread.yield()s we can do in 500ms.
-  static long calibrate ()
-  {
-    long i = 1;
-
-    for (int tries = 0; tries < 40; tries++)
-      {
-       long t = System.currentTimeMillis();
-       for (long n = 0; n < i; n++)
-         Thread.yield();
-       long t_prime = System.currentTimeMillis();
-       if (t_prime - t > 500)
-         return i;
-       i *= 2;
-      }
-    // We have no system clock.  Give up.
-    throw new RuntimeException ("We have no system clock.");
-  }
-
-  static long yields = calibrate ();
-
   public void run()
   {
+    super.ready();
     System.out.println ("Busy waiting");
 
     int count = 0;
-    for (long i=0; i < yields; i++)
+    long start = System.currentTimeMillis();
+    while (true)
       {
         Thread.yield();
-       count += 5;
        if (isInterrupted ())
          break;
+       long now = System.currentTimeMillis();  
+       if ((now - start) > 5000)
+         break;
       }
     synchronized (this)
     {  
@@ -91,10 +85,11 @@ class Looper extends Thread
   }
 }
 
-class Joiner extends Thread
+class Joiner extends ThreadBase
 {
   public void run()
   {
+    super.ready();
     System.out.println("join()");
     try
     {
@@ -133,11 +128,17 @@ public class Thread_Interrupt
     sleep_and_interrupt (j);
   }
   
-  public static void sleep_and_interrupt(Thread t)
+  public static void sleep_and_interrupt(ThreadBase t)
   {
     try
     {
-      Thread.sleep (250);
+      synchronized (t)
+        {
+         while (!t.ready)
+           t.wait(10);
+       }
+    
+      Thread.sleep (50);
       t.interrupt ();
       long t1 = System.currentTimeMillis();
       t.join (5000);
index 711b05cf0f8a415fb9edda60e0bfe58663388d8d..9f7f2fb1590cf5d0a9348269e6f0b8d6563d1f0e 100644 (file)
@@ -1,5 +1,4 @@
 // Many threads join a single thread.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 class Sleeper implements Runnable
 {
index f1ffa674c37278e2fec62223755170e6d99f608f..649a75c762c1d3d70e7f3d297903e38f0103b3cd 100644 (file)
@@ -1,5 +1,4 @@
 // Test that monitor locks work and are recursive.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 class T implements Runnable
 {
index e7f4a81532c0aa46146df7741856638e9c7c7be4..7220a6a3a6a364475cbd160cf4c0c9897882ba5c 100644 (file)
@@ -1,5 +1,4 @@
 // Test that Thread.sleep() works.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 public class Thread_Sleep
 {
@@ -9,9 +8,9 @@ public class Thread_Sleep
     {
       long start = System.currentTimeMillis();
       System.out.println("sleeping");
-      Thread.sleep(1000);
+      Thread.sleep(50);
       long end = System.currentTimeMillis();
-      if ((end - start) > 1100 || (end - start) < 990)
+      if ((end - start) < 50)
         System.out.println ("failed");
       else
        System.out.println("ok");
index a6492821b4b3a1bad42419791debb6e2aadaf902..88508243a0ae654d23c2a43fc9418c23470723a2 100644 (file)
@@ -1,5 +1,4 @@
 // Test basic thread creation and wait/notify functionality.
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 public class Thread_Wait implements Runnable
 {
index a03cb943812a4dae1dcf0207e67e4bf68a71318a..7ee51726c29b9978aa2087bed9378d2196c2c2dc 100644 (file)
@@ -1,6 +1,5 @@
 // Create many threads waiting on a monitor. Interrupt some of them. Do the 
 // others wake up correctly with notify() and/or notifyAll()?
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 import java.util.Vector;
 
index be7b5551614191fc9d8ee823904a83aaa20baf5b..609527cda9963e78a09e9b684b7461fdf261cd1e 100644 (file)
@@ -1,6 +1,5 @@
 // Create two threads waiting on a monitor. Interrupt one of them. Does the 
 // other wake up correctly?
-// Origin: Bryce McKinlay <bryce@albatross.co.nz>
 
 class Waiter extends Thread
 {
index ec99efc1a79cfcd58ee61dd86581d020cc0e9e19..7124dedeef13361171a547dffd293fb8a47230ac 100644 (file)
@@ -4,8 +4,6 @@
 // Class.isInstance() and Class.isAssignableFrom(), and isAssignableFrom()
 // functionality in the event that an interface argument that is not 
 // implemented by any loaded class is given.
-//
-// Bryce McKinlay <bryce@albatross.co.nz>
 
 class A
 {