Skip to content

Commit 3f01207

Browse files
author
Alex Menkov
committedOct 31, 2024
8343408: TestJNIIsSameObject should be run on all platforms
1 parent 178289b commit 3f01207

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed
 

‎test/hotspot/jtreg/runtime/valhalla/inlinetypes/TestJNIIsSameObject.java

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
* @summary Test JNI IsSameObject semantic with inline types
3333
* @library /testlibrary /test/lib
3434
* @modules java.base/jdk.internal.vm.annotation
35-
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
36-
* @requires (os.family == "linux" | os.family == "mac")
3735
* @enablePreview
3836
* @compile TestJNIIsSameObject.java
3937
* @run main/othervm/native TestJNIIsSameObject

‎test/hotspot/jtreg/runtime/valhalla/inlinetypes/libJNIIsSameObject.c

-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@
2626
#include <string.h>
2727
#include <jni.h>
2828

29-
#if !defined(_WIN32) && !defined(_WIN64)
30-
3129
JNIEXPORT jboolean JNICALL
3230
Java_TestJNIIsSameObject_isSameObject(JNIEnv* env, jclass klass, jobject obj0, jobject obj1) {
3331
return (*env)->IsSameObject(env, obj0, obj1);
3432
}
35-
36-
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.