< prev index next >

test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/TestConfiguration.java

Print this page
rev 59093 : imported patch randomness-code_vmTestbase_unloading
rev 59095 : [mq]: 8243434.00

*** 1,7 **** /* ! * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 116,126 **** c.redefineClasses = "true".equals(args[i + 1]); } else if ("-inMemoryCompilation".equalsIgnoreCase(args[i])) { c.inMemoryCompilation = "true".equals(args[i + 1]); } else if ("-numberOfChecksLimit".equalsIgnoreCase(args[i])) { c.numberOfChecksLimit = Integer.parseInt(args[i + 1]); ! } else if (args[i].startsWith("-") && ! "-stressTime".equals(args[i]) && ! args[i].toLowerCase().contains("seed")) { System.out.println("\n\nWarning!! Unrecognized option " + args[i] + "\n\n"); } } System.out.println("releaseRefMode = " + c.releaseRefMode); System.out.println("whatToKeep = " + c.whatToKeep); --- 116,126 ---- c.redefineClasses = "true".equals(args[i + 1]); } else if ("-inMemoryCompilation".equalsIgnoreCase(args[i])) { c.inMemoryCompilation = "true".equals(args[i + 1]); } else if ("-numberOfChecksLimit".equalsIgnoreCase(args[i])) { c.numberOfChecksLimit = Integer.parseInt(args[i + 1]); ! } else if (args[i].startsWith("-") && ! "-stressTime".equals(args[i])) { System.out.println("\n\nWarning!! Unrecognized option " + args[i] + "\n\n"); } } System.out.println("releaseRefMode = " + c.releaseRefMode); System.out.println("whatToKeep = " + c.whatToKeep);
< prev index next >