diff --git a/substratevm/src/com.oracle.svm.test/src/com/oracle/svm/test/debug/helper/test_svm_util.py b/substratevm/src/com.oracle.svm.test/src/com/oracle/svm/test/debug/helper/test_svm_util.py index f96459c51ee1..0502745ac7e6 100644 --- a/substratevm/src/com.oracle.svm.test/src/com/oracle/svm/test/debug/helper/test_svm_util.py +++ b/substratevm/src/com.oracle.svm.test/src/com/oracle/svm/test/debug/helper/test_svm_util.py @@ -89,7 +89,7 @@ def tearDown(self): gdb_delete_breakpoints() gdb_kill() - def test_compressed_hub_adr(self): + def test_compressed_hub_oop(self): gdb_set_breakpoint("com.oracle.svm.test.debug.helper.PrettyPrinterTest::testArrayList") gdb_continue() # get a compressed hub @@ -100,7 +100,7 @@ def test_compressed_hub_adr(self): hub = z_hub.dereference() hub = hub.cast(SVMUtil.get_uncompressed_type(hub.type)) self.assertFalse(SVMUtil.is_compressed(hub.type)) - self.assertEqual(SVMUtil.get_compressed_adr(hub), int(z_hub)) + self.assertEqual(SVMUtil.get_compressed_oop(hub), int(z_hub)) hub_str = str(hub) SVMUtil.prompt_hook() @@ -108,7 +108,7 @@ def test_compressed_hub_adr(self): SVMUtil.prompt_hook() self.assertEqual(hub_str, z_hub_str) - def test_compressed_adr(self): + def test_compressed_oop(self): gdb_set_breakpoint("com.oracle.svm.test.debug.helper.PrettyPrinterTest::testArrayList") gdb_continue() # get a compressed object @@ -119,7 +119,7 @@ def test_compressed_adr(self): name = z_name.dereference() name = name.cast(SVMUtil.get_uncompressed_type(name.type)) self.assertFalse(SVMUtil.is_compressed(name.type)) - self.assertEqual(SVMUtil.get_compressed_adr(name), int(z_name)) + self.assertEqual(SVMUtil.get_compressed_oop(name), int(z_name)) name_str = str(name) SVMUtil.prompt_hook()