< prev index next >

test/java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.java

Print this page




  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  * @bug 4023283
  27  * @summary Checks that an Error which propogate up to the EventDispatch
  28  * loop does not crash AWT.
  29  * @author Andrei Dmitriev: area=awt.event
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main LoopRobustness

  33  */
  34 
  35 import java.awt.*;
  36 import java.awt.event.*;
  37 
  38 import sun.awt.SunToolkit;
  39 
  40 import test.java.awt.regtesthelpers.Util;
  41 
  42 public class LoopRobustness {
  43 
  44     final static long TIMEOUT = 5000;
  45     final static Object LOCK = new Object();
  46 
  47     public static int clicks = 0;
  48     public static volatile boolean notifyOccured = false;
  49     public static volatile boolean otherExceptionsCaught = false;
  50 
  51     public static void main(String [] args) throws Exception {
  52         SunToolkit.createNewAppContext();




  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  * @bug 4023283
  27  * @summary Checks that an Error which propogate up to the EventDispatch
  28  * loop does not crash AWT.
  29  * @author Andrei Dmitriev: area=awt.event
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main LoopRobustness
  33  * @key randomness
  34  */
  35 
  36 import java.awt.*;
  37 import java.awt.event.*;
  38 
  39 import sun.awt.SunToolkit;
  40 
  41 import test.java.awt.regtesthelpers.Util;
  42 
  43 public class LoopRobustness {
  44 
  45     final static long TIMEOUT = 5000;
  46     final static Object LOCK = new Object();
  47 
  48     public static int clicks = 0;
  49     public static volatile boolean notifyOccured = false;
  50     public static volatile boolean otherExceptionsCaught = false;
  51 
  52     public static void main(String [] args) throws Exception {
  53         SunToolkit.createNewAppContext();


< prev index next >