On 3/2/16 12:49 PM, Markus Gronlund wrote:

Greetings,

Could a please ask for reviews for the following simple fix to resolve a test issue associated with com/sun/jdi/StepTest.java

Bug: https://bugs.openjdk.java.net/browse/JDK-8151053

Comment:

Need to filter out some classes that has moved to another package

Patch is attached.


Thumbs up on the one liner addition to test/com/sun/jdi/TestScaffold.java

@@ -752,6 +752,7 @@
         sr.addClassExclusionFilter("com.oracle.*");
         sr.addClassExclusionFilter("oracle.*");
         sr.addClassExclusionFilter("jdk.internal.*");
+        sr.addClassExclusionFilter("jdk.jfr.*");
         sr.addCountFilter(1);
         sr.enable();
         StepEvent retEvent = (StepEvent)waitForRequestedEvent(sr);


Dan


Thanks in advance

Markus


Reply via email to