Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/com/sun/jdi/CountEvent.java
38855 views
1
/*
2
* Copyright (c) 2000, 2002, Oracle and/or its affiliates. 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 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
* @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
*/
36
import com.sun.jdi.*;
37
import com.sun.jdi.event.*;
38
import com.sun.jdi.request.*;
39
40
class 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
72
public 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
}
106
107