1
1
/*
2
- * Copyright (c) 2003, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2003, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
#include " jvmti.h"
27
27
#include " agent_common.h"
28
28
#include " JVMTITools.h"
29
+ #include " jvmti_common.h"
29
30
30
31
extern " C" {
31
32
@@ -120,7 +121,7 @@ int resThread(jobject susThr) {
120
121
121
122
JNIEXPORT jint JNICALL
122
123
Java_nsk_jvmti_PopFrame_popframe004_doPopFrame (JNIEnv *env, jclass cls, jboolean otherThread,
123
- jobject frameThr) {
124
+ jthread frameThr) {
124
125
jvmtiError err;
125
126
126
127
if (popDone) {
@@ -152,6 +153,8 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
152
153
tot_result = STATUS_FAILED;
153
154
}
154
155
156
+ bool gotError = false ;
157
+
155
158
printf (" >>>>>>>> Invoke PopFrame()\n " );
156
159
fflush (stdout);
157
160
set_watch_ev (1 ); /* watch JVMTI events */
@@ -160,7 +163,7 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
160
163
switch (err) {
161
164
case JVMTI_ERROR_NONE:
162
165
printf (" Check FAILED: PopFrame() was unexpectedly done\n " );
163
- tot_result = STATUS_FAILED ;
166
+ gotError = true ;
164
167
break ;
165
168
case JVMTI_ERROR_NO_MORE_FRAMES:
166
169
case JVMTI_ERROR_OPAQUE_FRAME:
@@ -173,20 +176,25 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
173
176
printf (" Check FAILED: PopFrame() returned unexpected error %d: %s\n " ,
174
177
err, TranslateError (err));
175
178
printf (" \t For more info about this error please refer to the JVMTI spec.\n " );
176
- tot_result = STATUS_FAILED ;
179
+ gotError = true ;
177
180
break ;
178
181
}
179
182
180
183
set_watch_ev (0 ); /* ignore again JVMTI events */
181
184
if (gen_ev) {
182
185
printf (" TEST FAILED: %d JVMTI events were generated by the function PopFrame()\n " ,
183
186
gen_ev);
184
- tot_result = STATUS_FAILED ;
187
+ gotError = true ;
185
188
} else {
186
189
printf (" Check PASSED: No JVMTI events were generated by the function PopFrame()\n " );
187
190
fflush (stdout);
188
191
}
189
192
193
+ if (gotError) {
194
+ tot_result = STATUS_FAILED;
195
+ print_stack_trace (jvmti, env, frameThr);
196
+ }
197
+
190
198
if (otherThread) { /* we are in a different thread */
191
199
return resThread (frameThr);
192
200
} else {
0 commit comments