< prev index next >

test/hotspot/jtreg/compiler/ciReplay/SABase.java

Print this page
rev 59383 : [mq]: final
   1 /*
   2  * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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  */


 114             throw new Error("Can't read replay files: " + ioe, ioe);
 115         }
 116         commonTests();
 117         runVmTests();
 118     }
 119 
 120     public static void checkSetLimits() {
 121         if (!Platform.isWindows()) {
 122             OutputAnalyzer oa;
 123             try {
 124                 // first check if setting limit is possible
 125                 oa = ProcessTools.executeProcess("sh", "-c", RUN_SHELL_NO_LIMIT + "ulimit -c");
 126             } catch (Throwable t) {
 127                 throw new Error("Can't set limits: " + t, t);
 128             }
 129             oa.shouldHaveExitValue(0);
 130 
 131             String out = oa.getOutput().trim(); // cut win/*nix newlines
 132             if (!out.equals("unlimited") && !out.equals("-1")) {
 133                 throw new Error("Unable to set limits");
 134             }
 135         }
 136         if (Platform.isSolaris()) {
 137             try {
 138                 OutputAnalyzer oa = ProcessTools.executeProcess("coreadm", "-p", "core",
 139                         "" + ProcessHandle.current().pid());
 140                 oa.shouldHaveExitValue(0);
 141             } catch (Throwable t) {
 142                 throw new Error("Can't launch coreadm: " + t, t);
 143             }
 144         }
 145     }
 146 }
 147 
   1 /*
   2  * Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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  */


 114             throw new Error("Can't read replay files: " + ioe, ioe);
 115         }
 116         commonTests();
 117         runVmTests();
 118     }
 119 
 120     public static void checkSetLimits() {
 121         if (!Platform.isWindows()) {
 122             OutputAnalyzer oa;
 123             try {
 124                 // first check if setting limit is possible
 125                 oa = ProcessTools.executeProcess("sh", "-c", RUN_SHELL_NO_LIMIT + "ulimit -c");
 126             } catch (Throwable t) {
 127                 throw new Error("Can't set limits: " + t, t);
 128             }
 129             oa.shouldHaveExitValue(0);
 130 
 131             String out = oa.getOutput().trim(); // cut win/*nix newlines
 132             if (!out.equals("unlimited") && !out.equals("-1")) {
 133                 throw new Error("Unable to set limits");









 134             }
 135         }
 136     }
 137 }
 138 
< prev index next >