Skip to content

Commit 6acbdb5

Browse files
author
Alex Menkov
committedOct 22, 2022
8295427: popframe004: report more details on error
Reviewed-by: cjplummer, lmesnik, sspitsyn
1 parent 902162c commit 6acbdb5

File tree

1 file changed

+13
-5
lines changed
  • test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004

1 file changed

+13
-5
lines changed
 

‎test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/popframe004.cpp

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,6 +26,7 @@
2626
#include "jvmti.h"
2727
#include "agent_common.h"
2828
#include "JVMTITools.h"
29+
#include "jvmti_common.h"
2930

3031
extern "C" {
3132

@@ -120,7 +121,7 @@ int resThread(jobject susThr) {
120121

121122
JNIEXPORT jint JNICALL
122123
Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean otherThread,
123-
jobject frameThr) {
124+
jthread frameThr) {
124125
jvmtiError err;
125126

126127
if (popDone) {
@@ -152,6 +153,8 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
152153
tot_result = STATUS_FAILED;
153154
}
154155

156+
bool gotError = false;
157+
155158
printf(">>>>>>>> Invoke PopFrame()\n");
156159
fflush(stdout);
157160
set_watch_ev(1); /* watch JVMTI events */
@@ -160,7 +163,7 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
160163
switch (err) {
161164
case JVMTI_ERROR_NONE:
162165
printf("Check FAILED: PopFrame() was unexpectedly done\n");
163-
tot_result = STATUS_FAILED;
166+
gotError = true;
164167
break;
165168
case JVMTI_ERROR_NO_MORE_FRAMES:
166169
case JVMTI_ERROR_OPAQUE_FRAME:
@@ -173,20 +176,25 @@ Java_nsk_jvmti_PopFrame_popframe004_doPopFrame(JNIEnv *env, jclass cls, jboolean
173176
printf("Check FAILED: PopFrame() returned unexpected error %d: %s\n",
174177
err, TranslateError(err));
175178
printf("\tFor more info about this error please refer to the JVMTI spec.\n");
176-
tot_result = STATUS_FAILED;
179+
gotError = true;
177180
break;
178181
}
179182

180183
set_watch_ev(0); /* ignore again JVMTI events */
181184
if (gen_ev) {
182185
printf("TEST FAILED: %d JVMTI events were generated by the function PopFrame()\n",
183186
gen_ev);
184-
tot_result = STATUS_FAILED;
187+
gotError = true;
185188
} else {
186189
printf("Check PASSED: No JVMTI events were generated by the function PopFrame()\n");
187190
fflush(stdout);
188191
}
189192

193+
if (gotError) {
194+
tot_result = STATUS_FAILED;
195+
print_stack_trace(jvmti, env, frameThr);
196+
}
197+
190198
if (otherThread) { /* we are in a different thread */
191199
return resThread(frameThr);
192200
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.