8341588: Remove CollectionUsageThreshold.java from ProblemList-Xcomp for debugging

Reviewed-by: lmesnik, kevinw
This commit is contained in:
Ramkumar Sunderbabu 2024-10-09 03:11:59 +00:00
parent f276f58fb4
commit de90204b60
3 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2018, 2024, 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
@ -28,6 +28,5 @@
#############################################################################
java/lang/invoke/MethodHandles/CatchExceptionTest.java 8146623 generic-all
java/lang/management/MemoryMXBean/CollectionUsageThreshold.java 8318668 generic-all
java/foreign/TestUpcallStress.java 8341584 generic-all
com/sun/jdi/InterruptHangTest.java 8043571 generic-all

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2004, 2024, 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
@ -56,6 +56,8 @@ public class MemoryUtil {
(pool.isUsageThresholdSupported() ? pool.getUsageThreshold() : -1));
System.out.println(INDENT + "ThresholdCount: " +
(pool.isUsageThresholdSupported() ? pool.getUsageThresholdCount() : -1));
System.out.println(INDENT + "CollectionThresholdCount: " +
(pool.isCollectionUsageThresholdSupported() ? pool.getCollectionUsageThresholdCount() : -1));
System.out.print(INDENT + "Manager = [");
String[] mgrs = pool.getMemoryManagerNames();
for (int i = 0; i < mgrs.length; i++) {

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2024, 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
@ -73,6 +73,7 @@ public class RunUtil {
}
opts.addAll(Arrays.asList(testOpts));
opts.add(main);
opts.add("trace");
OutputAnalyzer output = ProcessTools.executeProcess(opts.toArray(new String[0]));
output.shouldHaveExitValue(0);