Re: RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails [v2]

2024-12-04 Thread Tom Rodriguez
On Wed, 4 Dec 2024 05:53:22 GMT, Tom Rodriguez wrote: >> The notification that finalize is complete should be done after printing the >> message because in Xcomp mode there might be a significant delay at the >> println so the object hasn't actually been finalized yet. > > Tom Rodriguez has upd

Re: RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails [v2]

2024-12-03 Thread Tom Rodriguez
> The notification that finalize is complete should be done after printing the > message because in Xcomp mode there might be a significant delay at the > println so the object hasn't actually been finalized yet. Tom Rodriguez has updated the pull request with a new target base due to a merge o

Re: RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails

2024-10-31 Thread Tom Rodriguez
On Tue, 29 Oct 2024 16:52:45 GMT, Tom Rodriguez wrote: > The notification that finalize is complete should be done after printing the > message because in Xcomp mode there might be a significant delay at the > println so the object hasn't actually been finalized yet. It probably should be vola

Re: RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails

2024-10-30 Thread Brent Christian
On Tue, 29 Oct 2024 16:52:45 GMT, Tom Rodriguez wrote: > The notification that finalize is complete should be done after printing the > message because in Xcomp mode there might be a significant delay at the > println so the object hasn't actually been finalized yet. Would it help for `Basic.f

Re: RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails

2024-10-29 Thread Mandy Chung
On Tue, 29 Oct 2024 16:52:45 GMT, Tom Rodriguez wrote: > The notification that finalize is complete should be done after printing the > message because in Xcomp mode there might be a significant delay at the > println so the object hasn't actually been finalized yet. LGTM - Marke

RFR: 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fails

2024-10-29 Thread Tom Rodriguez
The notification that finalize is complete should be done after printing the message because in Xcomp mode there might be a significant delay at the println so the object hasn't actually been finalized yet. - Commit messages: - 8343213: TEST_BUG: [Graal] java/lang/ref/Basic.java fa