< prev index next >

test/runtime/ErrorHandling/SecondaryErrorTest.java

Print this page




   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 /*
  26  * @test
  27  * @bug 8065896
  28  * @summary Synchronous signals during error reporting may terminate or hang VM process
  29  * @library /testlibrary
  30  * @author Thomas Stuefe (SAP)
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  */
  34 
  35 import java.io.BufferedReader;
  36 import java.io.File;
  37 import java.io.FileInputStream;
  38 import java.io.InputStreamReader;
  39 import java.util.regex.Pattern;
  40 
  41 import jdk.test.lib.OutputAnalyzer;
  42 import jdk.test.lib.Platform;
  43 import jdk.test.lib.ProcessTools;
  44 
  45 public class SecondaryErrorTest {
  46 
  47 
  48   public static void main(String[] args) throws Exception {
  49 
  50     // Do not execute for windows, nor for non-debug builds
  51     if (Platform.isWindows()) {
  52       return;
  53     }
  54 
  55     if (!Platform.isDebugBuild()) {
  56       return;
  57     }
  58 
  59     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  60         "-XX:+UnlockDiagnosticVMOptions",
  61         "-Xmx100M",
  62         "-XX:-CreateCoredumpOnCrash",
  63         "-XX:ErrorHandlerTest=15",




   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 /*
  26  * @test
  27  * @bug 8065896
  28  * @summary Synchronous signals during error reporting may terminate or hang VM process
  29  * @library /test/lib
  30  * @author Thomas Stuefe (SAP)
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  */
  34 
  35 import java.io.BufferedReader;
  36 import java.io.File;
  37 import java.io.FileInputStream;
  38 import java.io.InputStreamReader;
  39 import java.util.regex.Pattern;
  40 
  41 import jdk.test.lib.process.OutputAnalyzer;
  42 import jdk.test.lib.Platform;
  43 import jdk.test.lib.process.ProcessTools;
  44 
  45 public class SecondaryErrorTest {
  46 
  47 
  48   public static void main(String[] args) throws Exception {
  49 
  50     // Do not execute for windows, nor for non-debug builds
  51     if (Platform.isWindows()) {
  52       return;
  53     }
  54 
  55     if (!Platform.isDebugBuild()) {
  56       return;
  57     }
  58 
  59     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  60         "-XX:+UnlockDiagnosticVMOptions",
  61         "-Xmx100M",
  62         "-XX:-CreateCoredumpOnCrash",
  63         "-XX:ErrorHandlerTest=15",


< prev index next >