< prev index next >

test/runtime/SharedArchiveFile/LimitSharedSizes.java

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test LimitSharedSizes
  25  * @summary Test handling of limits on shared space size
  26  * @library /testlibrary
  27  * @modules java.base/sun.misc
  28  *          java.management
  29  * @run main LimitSharedSizes
  30  */
  31 
  32 import com.oracle.java.testlibrary.*;
  33 
  34 public class LimitSharedSizes {
  35     static enum Region {
  36         RO, RW, MD, MC
  37     }
  38 
  39     private static class SharedSizeTestData {
  40         public String optionName;
  41         public String optionValue;
  42         public String expectedErrorMsg;
  43 
  44         public SharedSizeTestData(Region region, String value, String msg) {
  45             optionName = getName(region);
  46             optionValue = value;
  47             expectedErrorMsg = msg;
  48         }
  49 
  50         public SharedSizeTestData(Region region, String msg) {
  51             optionName = getName(region);
  52             optionValue = getValue(region);




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test LimitSharedSizes
  25  * @summary Test handling of limits on shared space size
  26  * @library /testlibrary
  27  * @modules java.base/sun.misc
  28  *          java.management
  29  * @run main LimitSharedSizes
  30  */
  31 
  32 import jdk.test.lib.*;
  33 
  34 public class LimitSharedSizes {
  35     static enum Region {
  36         RO, RW, MD, MC
  37     }
  38 
  39     private static class SharedSizeTestData {
  40         public String optionName;
  41         public String optionValue;
  42         public String expectedErrorMsg;
  43 
  44         public SharedSizeTestData(Region region, String value, String msg) {
  45             optionName = getName(region);
  46             optionValue = value;
  47             expectedErrorMsg = msg;
  48         }
  49 
  50         public SharedSizeTestData(Region region, String msg) {
  51             optionName = getName(region);
  52             optionValue = getValue(region);


< prev index next >