8145787: [TEST_BUG][PIT] javax/swing/undo/UndoManager/AbstractDocumentUndoConcurrentTest.java fails with CannotUndoException

Reviewed-by: alexsch, serb
This commit is contained in:
Semyon Sadetsky 2016-04-15 09:59:36 +03:00
parent dc0aed8917
commit 3029b6b065

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -104,8 +104,12 @@ public class AbstractDocumentUndoConcurrentTest {
e.printStackTrace();
}
for (int i = 0; i < 1000; i++) {
undoManager.undoOrRedo();
undoManager.undo();
if(undoManager.canUndoOrRedo()) {
undoManager.undoOrRedo();
}
if(undoManager.canUndo()) {
undoManager.undo();
}
}
System.out.println("t3 done");
}