8062961: [TESTBUG] Spurious timeout for runtime/ErrorHandling/ProblematicFrameTest
authorctornqvi
Thu, 15 Jan 2015 14:10:49 -0800
changeset 28623 c6d1cfa63594
parent 28622 8a6807f24cbd
child 28624 88972fd01f71
8062961: [TESTBUG] Spurious timeout for runtime/ErrorHandling/ProblematicFrameTest Reviewed-by: coleenp, gtriantafill
hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java
--- a/hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java	Thu Jan 15 12:43:14 2015 +0000
+++ b/hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java	Thu Jan 15 14:10:49 2015 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -44,7 +44,7 @@
 
     public static void main(String[] args) throws Exception {
         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
-            "-Xmx64m", "-XX:-TransmitErrorReport", Crasher.class.getName());
+            "-Xmx64m", "-XX:-TransmitErrorReport", "-XX:-CreateMinidumpOnCrash", Crasher.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldNotMatch("error occurred during error reporting \\(printing problematic frame\\)");
     }