1 /*
   2  * Copyright (c) 2015, 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  */
  23 
  24 /*
  25  * @test
  26  * @bug 6888954
  27  * @bug 8015884
  28  * @summary Exercise HotSpot error handling code by invoking java with
  29  *          -XX:ErrorHandlerTest option to cause an error report. Check the results.
  30  * @modules java.base/jdk.internal.misc
  31  * @library /testlibrary
  32  * @run driver ErrorHandler
  33  */
  34 
  35 import jdk.test.lib.*;
  36 
  37 public class ErrorHandler {
  38 
  39     public static OutputAnalyzer runTest(int testcase) throws Exception {
  40         return new OutputAnalyzer(
  41             ProcessTools.createJavaProcessBuilder(
  42             "-XX:-TransmitErrorReport", "-XX:-CreateCoredumpOnCrash", "-XX:ErrorHandlerTest=" + testcase)
  43             .start());
  44     }
  45 
  46     public static void main(String[] args) throws Exception {
  47         // Test is only applicable for debug builds
  48         if (!Platform.isDebugBuild()) {
  49             return;
  50         }
  51         // Keep this in sync with hotspot/src/share/vm/utilities/debug.cpp
  52         int i = 1;
  53         String[] strings = {
  54             "assert(str == NULL) failed: expected null",
  55             "assert(num == 1023 && *str == 'X') failed: num=",
  56             "guarantee(str == NULL) failed: expected null",
  57             "guarantee(num == 1023 && *str == 'X') failed: num=",
  58             "fatal error: expected null",
  59             "fatal error: num=",
  60             "fatal error: this message should be truncated during formatting",
  61             "ChunkPool::allocate",
  62             "Error: ShouldNotCall()",
  63             "Error: ShouldNotReachHere()",
  64             "Error: Unimplemented()"
  65         };
  66 
  67         String[] patterns = {
  68             "(SIGILL|SIGSEGV|EXCEPTION_ACCESS_VIOLATION).* at pc=",
  69             "(SIGBUS|SIGSEGV|SIGILL|EXCEPTION_ACCESS_VIOLATION).* at pc="
  70         };
  71 
  72         for (String s : strings) {
  73             runTest(i++).shouldContain(s);
  74         }
  75 
  76         for (String p : patterns) {
  77             runTest(i++).shouldMatch(p);
  78         }
  79     }
  80 }