< prev index next >

test/runtime/ErrorHandling/TestOnOutOfMemoryError.java

Print this page




   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  */
  23 
  24 /*
  25  * @test TestOnOutOfMemoryError
  26  * @summary Test using -XX:OnOutOfMemoryError=<cmd>
  27  * @modules java.base/jdk.internal.misc
  28  * @library /test/lib
  29  * @run main TestOnOutOfMemoryError
  30  * @bug 8078470
  31  */
  32 
  33 import jdk.test.lib.process.ProcessTools;
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 
  36 public class TestOnOutOfMemoryError {
  37 
  38     public static void main(String[] args) throws Exception {
  39         if (args.length == 1) {
  40             // This should guarantee to throw:
  41             //  java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  42             Object[] oa = new Object[Integer.MAX_VALUE];
  43             return;
  44         }
  45 
  46         // else this is the main test
  47         String msg = "Test Succeeded";

  48         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  49            "-XX:OnOutOfMemoryError=echo " + msg,

  50            TestOnOutOfMemoryError.class.getName(),
  51            "throwOOME");
  52 
  53         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  54 
  55         /* Actual output should look like this:
  56            #
  57            # java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  58            # -XX:OnOutOfMemoryError="echo Test Succeeded"
  59            #   Executing /bin/sh -c "echo Test Succeeded"...
  60            Test Succeeded
  61            Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  62            at OOME.main(OOME.java:3)
  63 
  64            So we don't want to match on the "# Executing ..." line, and they
  65            both get written to stdout.
  66         */
  67         output.shouldContain("Requested array size exceeds VM limit");
  68         output.stdoutShouldMatch("^" + msg); // match start of line only

  69         System.out.println("PASSED");
  70     }
  71 }


   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  */
  23 
  24 /*
  25  * @test TestOnOutOfMemoryError
  26  * @summary Test using multiple -XX:OnOutOfMemoryError=<cmd>
  27  * @modules java.base/jdk.internal.misc
  28  * @library /test/lib
  29  * @run main TestOnOutOfMemoryError
  30  * @bug 8078470 8177522
  31  */
  32 
  33 import jdk.test.lib.process.ProcessTools;
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 
  36 public class TestOnOutOfMemoryError {
  37 
  38     public static void main(String[] args) throws Exception {
  39         if (args.length == 1) {
  40             // This should guarantee to throw:
  41             //  java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  42             Object[] oa = new Object[Integer.MAX_VALUE];
  43             return;
  44         }
  45 
  46         // else this is the main test
  47         String msg1 = "Test1 Succeeded";
  48         String msg2 = "Test2 Succeeded";
  49         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  50            "-XX:OnOutOfMemoryError=echo " + msg1,
  51            "-XX:OnOutOfMemoryError=echo " + msg2,
  52            TestOnOutOfMemoryError.class.getName(),
  53            "throwOOME");
  54 
  55         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  56 
  57         /* Actual output should look like this:
  58            #
  59            # java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  60            # -XX:OnOutOfMemoryError="echo Test Succeeded"
  61            #   Executing /bin/sh -c "echo Test Succeeded"...
  62            Test Succeeded
  63            Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
  64            at OOME.main(OOME.java:3)
  65 
  66            So we don't want to match on the "# Executing ..." line, and they
  67            both get written to stdout.
  68         */
  69         output.shouldContain("Requested array size exceeds VM limit");
  70         output.stdoutShouldMatch("^" + msg1); // match start of line only
  71         output.stdoutShouldMatch("^" + msg2); // match start of line only
  72         System.out.println("PASSED");
  73     }
  74 }
< prev index next >