Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove004a.java
41161 views
1
/*
2
* Copyright (c) 2001, 2019, 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
package nsk.jdi.EventQueue.remove;
25
26
import jdk.test.lib.Utils;
27
import nsk.share.*;
28
import nsk.share.jpda.*;
29
import nsk.share.jdi.*;
30
31
/**
32
* This class is used as debuggee application for the remove004 JDI test.
33
*/
34
35
public class remove004a {
36
37
//----------------------------------------------------- templete section
38
39
static final int PASSED = 0;
40
static final int FAILED = 2;
41
static final int PASS_BASE = 95;
42
43
static ArgumentHandler argHandler;
44
static Log log;
45
46
//-------------------------------------------------- log procedures
47
48
private static void log1(String message) {
49
log.display("**> debuggee: " + message);
50
}
51
52
private static void logErr(String message) {
53
log.complain("**> debuggee: " + message);
54
}
55
56
//====================================================== test program
57
58
//------------------------------------------------------ common section
59
static int instruction = 1;
60
static int end = 0;
61
// static int quit = 0;
62
// static int continue = 2;
63
static int maxInstr = 1; // 2;
64
65
static int lineForComm = 2;
66
67
// Used for communication between debugger and debuggee
68
static volatile boolean stopSleeping = false;
69
70
// Used by debugger to set stopSleeping flag to true
71
static final boolean BOOLEAN_TRUE_VALUE = true;
72
73
private static void methodForCommunication() {
74
int i1 = instruction;
75
int i2 = i1;
76
int i3 = i2;
77
}
78
//---------------------------------------------------- main method
79
80
public static void main (String argv[]) {
81
82
argHandler = new ArgumentHandler(argv);
83
log = argHandler.createDebugeeLog();
84
85
log1("debuggee started!");
86
87
int exitCode = PASSED;
88
89
90
label0:
91
for (int i = 0; ; i++) {
92
93
if (instruction > maxInstr) {
94
logErr("ERROR: unexpected instruction: " + instruction);
95
exitCode = FAILED;
96
break ;
97
}
98
99
switch (i) {
100
101
//------------------------------------------------------ section tested
102
103
case 0:
104
log1("before: methodForCommunication();");
105
methodForCommunication();
106
log1("before: Thread.sleep");
107
Utils.waitForCondition(
108
() -> {
109
return stopSleeping;
110
},
111
Utils.adjustTimeout(argHandler.getWaitTime() * 10000),
112
100);
113
log1("after: Thread.sleep");
114
break ;
115
116
//------------------------------------------------- standard end section
117
118
default:
119
instruction = end;
120
methodForCommunication();
121
break label0;
122
}
123
}
124
125
System.exit(exitCode + PASS_BASE);
126
}
127
}
128
129