< prev index next >

test/runtime/SharedArchiveFile/SharedBaseAddress.java

Print this page




  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 /*
  25  * @test SharedBaseAddress
  26  * @summary Test variety of values for SharedBaseAddress, making sure
  27  *          VM handles normal values as well as edge values w/o a crash.
  28  * @library /testlibrary
  29  * @modules java.base/sun.misc
  30  *          java.management
  31  * @run main SharedBaseAddress
  32  */
  33 
  34 import com.oracle.java.testlibrary.*;
  35 
  36 public class SharedBaseAddress {
  37 
  38     // shared base address test table
  39     private static final String[] testTable = {
  40         "1g", "8g", "64g","512g", "4t",
  41         "32t", "128t", "0",
  42         "1", "64k", "64M"
  43     };
  44 
  45     public static void main(String[] args) throws Exception {
  46         // Known issue on Solaris-Sparc
  47         // @ignore JDK-8044600
  48         if (Platform.isSolaris() && Platform.isSparc())
  49             return;
  50 
  51         for (String testEntry : testTable) {
  52             String filename = "SharedBaseAddress" + testEntry + ".jsa";
  53             System.out.println("sharedBaseAddress = " + testEntry);
  54 




  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 /*
  25  * @test SharedBaseAddress
  26  * @summary Test variety of values for SharedBaseAddress, making sure
  27  *          VM handles normal values as well as edge values w/o a crash.
  28  * @library /testlibrary
  29  * @modules java.base/sun.misc
  30  *          java.management
  31  * @run main SharedBaseAddress
  32  */
  33 
  34 import jdk.test.lib.*;
  35 
  36 public class SharedBaseAddress {
  37 
  38     // shared base address test table
  39     private static final String[] testTable = {
  40         "1g", "8g", "64g","512g", "4t",
  41         "32t", "128t", "0",
  42         "1", "64k", "64M"
  43     };
  44 
  45     public static void main(String[] args) throws Exception {
  46         // Known issue on Solaris-Sparc
  47         // @ignore JDK-8044600
  48         if (Platform.isSolaris() && Platform.isSparc())
  49             return;
  50 
  51         for (String testEntry : testTable) {
  52             String filename = "SharedBaseAddress" + testEntry + ".jsa";
  53             System.out.println("sharedBaseAddress = " + testEntry);
  54 


< prev index next >