JinwooHwang-SAS commented on code in PR #7906: URL: https://github.com/apache/geode/pull/7906#discussion_r2303953789
########## geode-core/src/test/java/org/apache/geode/internal/size/SizeClassOnceObjectSizerJUnitTest.java: ########## @@ -44,15 +45,27 @@ public void test() { - ObjectSizer.SIZE_CLASS_ONCE.sizeof(new char[0]); // Make sure that we actually size strings each time - assertEquals(emptySize + roundup(OBJECT_SIZE + 4 + 5 * 2), - ObjectSizer.SIZE_CLASS_ONCE.sizeof(s1)); - assertEquals(emptySize + roundup(OBJECT_SIZE + 4 + 10 * 2), - ObjectSizer.SIZE_CLASS_ONCE.sizeof(s2)); + if (SystemUtils.isAzulJVM()) { Review Comment: Thank you for your guidance, @raboof. I've incorporated your suggestion into the latest update. Would you be willing to review the commit when you have a moment? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org