RFR(XXS): 8151053: com/sun/jdi/StepTest.java fails in 2016-03-01 JDK9-hs-rt nightly

Daniel D. Daugherty daniel.daugherty at oracle.com
Wed Mar 2 20:24:45 UTC 2016


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
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20160302/1a50a113/attachment-0001.html>


More information about the serviceability-dev mailing list