--- jsr166/src/test/tck/JSR166TestCase.java 2009/08/05 00:43:59 1.38 +++ jsr166/src/test/tck/JSR166TestCase.java 2009/11/17 21:51:45 1.39 @@ -566,7 +566,7 @@ public class JSR166TestCase extends Test try { Thread.sleep(SMALL_DELAY_MS); done = true; - } catch (Exception e) { + } catch (InterruptedException ok) { } } } @@ -577,7 +577,7 @@ public class JSR166TestCase extends Test try { Thread.sleep(MEDIUM_DELAY_MS); done = true; - } catch (Exception e) { + } catch (InterruptedException ok) { } } } @@ -588,7 +588,7 @@ public class JSR166TestCase extends Test try { Thread.sleep(LONG_DELAY_MS); done = true; - } catch (Exception e) { + } catch (InterruptedException ok) { } } } @@ -606,7 +606,7 @@ public class JSR166TestCase extends Test try { Thread.sleep(SMALL_DELAY_MS); done = true; - } catch (Exception e) { + } catch (InterruptedException ok) { } return Boolean.TRUE; }