Skip to content

Commit 03d4149

Browse files
committedApr 29, 2021
8266255: compiler/eliminateAutobox/TestEliminateBoxInDebugInfo.java uses wrong package name
Reviewed-by: kvn
1 parent 794cefe commit 03d4149

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎test/hotspot/jtreg/compiler/eliminateAutobox/TestEliminateBoxInDebugInfo.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
* @summary Verify that box object is scalarized in case it is directly referenced by debug info.
2929
* @library /test/lib
3030
*
31-
* @run driver compiler.c2.TestEliminateBoxInDebugInfo
31+
* @run driver compiler.eliminateAutobox.TestEliminateBoxInDebugInfo
3232
*/
33-
package compiler.c2;
33+
package compiler.eliminateAutobox;
3434

3535
import jdk.test.lib.process.OutputAnalyzer;
3636
import jdk.test.lib.process.ProcessTools;
3737

3838
public class TestEliminateBoxInDebugInfo {
3939
public static void runTest() throws Exception {
4040
String[] arguments = {
41-
"-XX:CompileCommand=compileonly,compiler/c2/TestEliminateBoxInDebugInfo$Test.foo",
42-
"-XX:CompileCommand=dontinline,compiler/c2/TestEliminateBoxInDebugInfo$Test.black",
41+
"-XX:CompileCommand=compileonly,compiler/eliminateAutobox/TestEliminateBoxInDebugInfo$Test.foo",
42+
"-XX:CompileCommand=dontinline,compiler/eliminateAutobox/TestEliminateBoxInDebugInfo$Test.black",
4343
"-Xbatch",
4444
"-XX:+PrintEliminateAllocations",
4545
Test.class.getName()

0 commit comments

Comments
 (0)
Please sign in to comment.