blob: 438e062feb0b2e568a6ee391d7a127a7858fdb0b [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2002 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/**
25 * @test
26 * @bug 4315352
27 * @summary disabling EventRequest expired with addCountFilter() throws
28 * InternalException.
29 *
30 * @author Robert Field
31 *
32 * @run build TestScaffold VMConnection TargetAdapter TargetListener
33 * @run compile -g CountEvent.java
34 * @run main CountEvent
35 */
36import com.sun.jdi.*;
37import com.sun.jdi.event.*;
38import com.sun.jdi.request.*;
39
40class CountEventTarg {
41
42 static CountEventTarg first = new CountEventTarg();
43 static CountEventTarg second = new CountEventTarg();
44 static CountEventTarg third = new CountEventTarg();
45
46 public static void main(String args[]) {
47 start();
48 }
49
50 static void start() {
51 first.go();
52 second.go();
53 third.go();
54 }
55
56 void go() {
57 one();
58 two();
59 three();
60 }
61
62 void one() {
63 }
64
65 void two() {
66 }
67
68 void three() {
69 }
70}
71
72public class CountEvent extends TestScaffold {
73
74 public static void main(String args[]) throws Exception {
75 new CountEvent(args).startTests();
76 }
77
78 CountEvent(String args[]) throws Exception {
79 super(args);
80 }
81
82 protected void runTests() throws Exception {
83
84 BreakpointEvent bpe = startToMain("CountEventTarg");
85 ThreadReference thread = bpe.thread();
86
87 StepEvent stepEvent = stepIntoLine(thread);
88
89 ReferenceType clazz = thread.frame(0).location().declaringType();
90 String className = clazz.name();
91
92 // uses addCountFilter
93 BreakpointEvent bpEvent = resumeTo(className, "go", "()V");
94
95 bpEvent.request().disable();
96 System.out.println("About to resume");
97 resumeToVMDisconnect();
98
99 if (!testFailed) {
100 println("CountEvent: passed");
101 } else {
102 throw new Exception("CountEvent: failed");
103 }
104 }
105}