8209590: compiler/compilercontrol/DontInlineCommandTest.java test fails with "Inline message differs" error
authorkvn
Thu, 13 Jun 2019 17:18:06 -0700
changeset 55408 24872d367cb6
parent 55407 bba34c350225
child 55409 c53db49c7a2f
8209590: compiler/compilercontrol/DontInlineCommandTest.java test fails with "Inline message differs" error Summary: increase InlineSmallCode to 4000 for tests which check inlining decisions. Reviewed-by: iignatyev
test/hotspot/jtreg/compiler/compilercontrol/share/scenario/Command.java
--- a/test/hotspot/jtreg/compiler/compilercontrol/share/scenario/Command.java	Thu Jun 13 17:49:49 2019 -0400
+++ b/test/hotspot/jtreg/compiler/compilercontrol/share/scenario/Command.java	Thu Jun 13 17:18:06 2019 -0700
@@ -33,8 +33,8 @@
 public enum Command {
     COMPILEONLY("compileonly", ".*", "-Xbatch"),
     EXCLUDE("exclude", "", "-Xbatch"),
-    INLINE("inline", ".*", "-Xbatch"),
-    DONTINLINE("dontinline", "", "-Xbatch"),
+    INLINE("inline", ".*", "-Xbatch", "-XX:InlineSmallCode=4000"),
+    DONTINLINE("dontinline", "", "-Xbatch", "-XX:InlineSmallCode=4000"),
     LOG("log", "", "-XX:+UnlockDiagnosticVMOptions",
             "-XX:+LogCompilation", "-XX:LogFile=" + LogProcessor.LOG_FILE),
     PRINT("print", ""),