Skip to content

Commit 9f94cbe

Browse files
author
Alexander Zvegintsev
committedDec 1, 2022
8271519: java/awt/event/SequencedEvent/MultipleContextsFunctionalTest.java failed with "Total [200] - Expected [400]"
Reviewed-by: serb
1 parent c70d1e1 commit 9f94cbe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎test/jdk/java/awt/event/SequencedEvent/MultipleContextsFunctionalTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -35,8 +35,8 @@
3535
import java.awt.Dimension;
3636
import java.awt.event.ActionEvent;
3737
import java.awt.event.ActionListener;
38-
import java.util.ArrayList;
3938
import java.util.List;
39+
import java.util.concurrent.CopyOnWriteArrayList;
4040
import java.util.concurrent.atomic.AtomicReference;
4141
import javax.swing.JButton;
4242
import javax.swing.JFrame;
@@ -55,7 +55,7 @@ public final class MultipleContextsFunctionalTest {
5555
private static final int CHECK_LAPSE = 100;
5656
private static final int MAX_COUNT = MAX_TIME / INTERVAL;
5757
private static final int EXPECTED = MAX_COUNT * NUM_WINDOW;
58-
private static final List<TestWindow> WINDOWS = new ArrayList<TestWindow>();
58+
private static final List<TestWindow> WINDOWS = new CopyOnWriteArrayList<>();
5959

6060
public static void main(String[] args) {
6161
for (int i = 0; i < NUM_WINDOW; i++) {
@@ -126,7 +126,7 @@ public void run() {
126126
private static final class TestWindow extends JFrame implements ActionListener {
127127

128128
private final JButton btn;
129-
private int counter = 0;
129+
private volatile int counter = 0;
130130
private final Timer t;
131131

132132
TestWindow(final int num) {

0 commit comments

Comments
 (0)
Please sign in to comment.