Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-02-01 Thread Sergey Bylokhov
On Tue, 30 Jan 2024 13:47:05 GMT, Tejesh R wrote: >> Suggested fix [JDK-8307091](https://bugs.openjdk.org/browse/JDK-8307091) >> also created concurrent exception intermittently (monthly once/quarterly >> once) on CI system. The issue was not able to be reproduced yet, hence >> proposing an al

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-31 Thread Alexey Ivanov
On Wed, 31 Jan 2024 04:53:44 GMT, Tejesh R wrote: > > I forgot to add a direct link to the test: > > [`BasicDirectoryModelConcurrency.java`](https://github.com/aivanov-jdk/jdk/blob/7cdf8c3610898557e91190d2bae440829a663376/test/jdk/javax/swing/JFileChooser/FileSystemView/BasicDirectoryModelConcur

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-30 Thread Tejesh R
On Tue, 30 Jan 2024 16:30:43 GMT, Alexey Ivanov wrote: > I forgot to add a direct link to the test: > [`BasicDirectoryModelConcurrency.java`](https://github.com/aivanov-jdk/jdk/blob/7cdf8c3610898557e91190d2bae440829a663376/test/jdk/javax/swing/JFileChooser/FileSystemView/BasicDirectoryModelConcu

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-30 Thread Alexey Ivanov
On Tue, 30 Jan 2024 13:47:05 GMT, Tejesh R wrote: >> Suggested fix [JDK-8307091](https://bugs.openjdk.org/browse/JDK-8307091) >> also created concurrent exception intermittently (monthly once/quarterly >> once) on CI system. The issue was not able to be reproduced yet, hence >> proposing an al

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-30 Thread Alexey Ivanov
On Thu, 25 Jan 2024 09:56:08 GMT, Alexey Ivanov wrote: > > > …I'm for replacing `Vector` with `ArrayList` for the `newFileCache` and > > > `newFiles` variables. These are local variables, they're not accessed > > > concurrently. Yet they're accessed from two threads: the current one and > > >

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-30 Thread Alexey Ivanov
On Tue, 30 Jan 2024 13:47:05 GMT, Tejesh R wrote: >> Suggested fix [JDK-8307091](https://bugs.openjdk.org/browse/JDK-8307091) >> also created concurrent exception intermittently (monthly once/quarterly >> once) on CI system. The issue was not able to be reproduced yet, hence >> proposing an al

Re: RFR: 8323670: A few client tests intermittently throw ConcurrentModificationException [v3]

2024-01-30 Thread Tejesh R
> Suggested fix [JDK-8307091](https://bugs.openjdk.org/browse/JDK-8307091) also > created concurrent exception intermittently (monthly once/quarterly once) on > CI system. The issue was not able to be reproduced yet, hence proposing an > alternative fix which uses iterators to compare the List.