--- jsr166/src/test/tck/AbstractQueuedSynchronizerTest.java 2018/06/13 18:36:31 1.64 +++ jsr166/src/test/tck/AbstractQueuedSynchronizerTest.java 2018/07/22 22:13:55 1.65 @@ -1283,7 +1283,7 @@ public class AbstractQueuedSynchronizerT try { s.acquireInterruptibly(1); shouldThrow(); - } catch (InterruptedException expected) {} + } catch (InterruptedException success) {} }; for (int i = 0; i < 2; i++) { Thread thread = new Thread(failedAcquire);