changeset 56828:24872d367cb6

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
author kvn
date Thu, 13 Jun 2019 17:18:06 -0700
parents bba34c350225
children c53db49c7a2f
files test/hotspot/jtreg/compiler/compilercontrol/share/scenario/Command.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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", ""),