1
1
/*
2
- * Copyright (c) 2005, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2005, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -60,9 +60,8 @@ private static void setFlag() throws Exception {
60
60
LingeredApp app1 = new JInfoTestLingeredApp ();
61
61
LingeredApp app2 = new JInfoTestLingeredApp ();
62
62
try {
63
- String [] params = new String [0 ];;
64
- LingeredApp .startAppExactJvmOpts (app1 , params );
65
- LingeredApp .startAppExactJvmOpts (app2 , params );
63
+ LingeredApp .startApp (app1 );
64
+ LingeredApp .startApp (app2 );
66
65
OutputAnalyzer output = jinfo ("-flag" , "MinHeapFreeRatio=1" , "JInfoTestLingeredApp" );
67
66
output .shouldHaveExitValue (0 );
68
67
output = jinfo ("-flag" , "MinHeapFreeRatio" , "JInfoTestLingeredApp" );
@@ -89,9 +88,8 @@ private static void classNameMatch() throws Exception {
89
88
LingeredApp app1 = new JInfoTestLingeredApp ();
90
89
LingeredApp app2 = new JInfoTestLingeredApp ();
91
90
try {
92
- String [] params = new String [0 ];
93
- LingeredApp .startAppExactJvmOpts (app1 , params );
94
- LingeredApp .startAppExactJvmOpts (app2 , params );
91
+ LingeredApp .startApp (app1 );
92
+ LingeredApp .startApp (app2 );
95
93
OutputAnalyzer output = jinfo ("JInfoTestLingeredApp" );
96
94
output .shouldHaveExitValue (0 );
97
95
// "Runtime Environment" written once per proc
0 commit comments