Skip to content

Commit

Permalink
[lworld] temporary fix to serviceability HiddenClassSigTest test unti…
Browse files Browse the repository at this point in the history
…l JDK-8247491 fixes it properly
  • Loading branch information
Mandy Chung committed Jun 24, 2020
1 parent 3f8947b commit 806fff4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ check_hidden_class_impl_interf(jvmtiEnv* jvmti, JNIEnv* jni, jclass klass) {
// check that hidden class implements just one interface
err = jvmti->GetImplementedInterfaces(klass, &count, &interfaces);
CHECK_JVMTI_ERROR(jni, err, "check_hidden_class_impl_interf: Error in JVMTI GetImplementedInterfaces");
if (count != 1) {
if (count != 2) {
LOG1("check_hidden_class_impl_interf: FAIL: implemented interfaces count: %d, expected to be 1\n", count);
failed = true;
return;
Expand Down

0 comments on commit 806fff4

Please sign in to comment.