Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8254799: runtime/ErrorHandling/TestHeapDumpOnOutOfMemoryError.java fails with release VMs #673

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
*/

import jdk.test.lib.Asserts;
import jdk.test.lib.Platform;
import jdk.test.lib.classloader.GeneratingClassLoader;
import jdk.test.lib.hprof.HprofParser;
import jdk.test.lib.process.ProcessTools;
Expand Down Expand Up @@ -78,7 +79,7 @@ static void test(String type) throws Exception {
// MaxMetaspaceSize=16M - ~12-15K classes - ~12sec runtime with all verifications
// MaxMetaspaceSize=16M - ~12-15K classes - VerifyDependencies off - ~3seconds on ppc
"-XX:MaxMetaspaceSize=16m",
"-XX:-VerifyDependencies",
Platform.isDebugBuild() ? "-XX:-VerifyDependencies" : "-Dx",
TestHeapDumpOnOutOfMemoryError.class.getName(), type);

OutputAnalyzer output = new OutputAnalyzer(pb.start());
Expand Down