7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
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 *
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;
|
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
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 *
26 * @bug 4023283
27 * @key headful
28 * @summary Checks that an Error which propogates up to the EventDispatch
29 * loop does not crash AWT.
30 * @author Andrei Dmitriev: area=awt.event
31 * @library ../../regtesthelpers
32 * @build Util
33 * @run main LoopRobustness
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;
|