Re: RFR: JDK-8151196 Several tests fail due to test library not found

2016-03-09 Thread Staffan Larsen
ev > [mailto:serviceability-dev-boun...@openjdk.java.net] On Behalf Of Staffan > Larsen > Sent: Wednesday, March 9, 2016 5:03 AM > To: Bengt Rutisson > Cc: serviceability-dev@openjdk.java.net; hotspot-gc-...@openjdk.java.net > Subject: Re: RFR: JDK-8151196 Several tests fail due to test l

RE: RFR: JDK-8151196 Several tests fail due to test library not found

2016-03-09 Thread Christian Tornqvist
@openjdk.java.net; hotspot-gc-...@openjdk.java.net Subject: Re: RFR: JDK-8151196 Several tests fail due to test library not found Good catch. Incremental change: diff --git a/test/gc/g1/plab/TestPLABResize.java b/test/gc/g1/plab/TestPLABResize.java --- a/test/gc/g1/plab/TestPLABResize.java +++ b/test/gc/g1/plab

Re: RFR: JDK-8151196 Several tests fail due to test library not found

2016-03-09 Thread Bengt Rutisson
Great! Looks good now! Bengt On 2016-03-09 11:02, Staffan Larsen wrote: Good catch. Incremental change: diff --git a/test/gc/g1/plab/TestPLABResize.java b/test/gc/g1/plab/TestPLABResize.java --- a/test/gc/g1/plab/TestPLABResize.java +++ b/test/gc/g1/plab/TestPLABResize.java @@ -27,7 +27,7 @@

Re: RFR: JDK-8151196 Several tests fail due to test library not found

2016-03-09 Thread Staffan Larsen
Good catch. Incremental change: diff --git a/test/gc/g1/plab/TestPLABResize.java b/test/gc/g1/plab/TestPLABResize.java --- a/test/gc/g1/plab/TestPLABResize.java +++ b/test/gc/g1/plab/TestPLABResize.java @@ -27,7 +27,7 @@ * @summary Test for PLAB resizing * @requires vm.gc=="G1" | vm.gc=="null

Re: RFR: JDK-8151196 Several tests fail due to test library not found

2016-03-09 Thread Bengt Rutisson
Hi Staffan, Changes look good. However it looks like this test has the same issue, right? http://hg.openjdk.java.net/jdk9/hs-rt/hotspot/file/59d3a69564dc/test/gc/g1/plab/TestPLABResize.java It is currently ignored, but we should probably fix it too... Thanks, Bengt On 2016-03-09 10:47, Staff