Skip to content

Commit

Permalink
8336673: [lworld] TestIdentityWithEliminateBoxInDebugInfo.java fails …
Browse files Browse the repository at this point in the history
…with migrated classes
  • Loading branch information
TobiHartmann committed Aug 13, 2024
1 parent ec28c1a commit 63622fd
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, Huawei Technologies Co., Ltd. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
Expand All @@ -25,7 +26,7 @@
* @test
* @bug 8261137
* @requires vm.flavor == "server"
* @summary Verify that box object identity matches after deoptimization when it is eliminated.
* @summary Verify that box object content matches after deoptimization when it is eliminated.
* @library /test/lib
*
* @run main/othervm -Xbatch compiler.eliminateAutobox.TestIdentityWithEliminateBoxInDebugInfo
Expand Down Expand Up @@ -67,7 +68,7 @@ public static void runTest() throws Exception {
if (!c) {
Asserts.assertTrue(a == Long.valueOf(42L));
Asserts.assertTrue(b == Long.valueOf(-42L));
Asserts.assertFalse(h == Long.valueOf(highBitsOnly));
Asserts.assertTrue(h == Long.valueOf(highBitsOnly));
}
});

Expand Down

0 comments on commit 63622fd

Please sign in to comment.