ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/FutureTaskTest.java
(Generate patch)

Comparing jsr166/src/test/tck/FutureTaskTest.java (file contents):
Revision 1.48 by jsr166, Sat Oct 21 06:50:25 2017 UTC vs.
Revision 1.49 by jsr166, Sun Oct 22 01:26:49 2017 UTC

# Line 51 | Line 51 | public class FutureTaskTest extends JSR1
51                  exInfo = CancellationException.class;
52              } catch (ExecutionException t) {
53                  exInfo = t.getCause();
54 <            } catch (Throwable t) {
54 >            } catch (Exception t) {
55                  threadUnexpectedException(t);
56              }
57  
# Line 66 | Line 66 | public class FutureTaskTest extends JSR1
66                  assertSame(exInfo, CancellationException.class);
67              } catch (ExecutionException t) {
68                  assertSame(exInfo, t.getCause());
69 <            } catch (Throwable t) {
69 >            } catch (Exception t) {
70                  threadUnexpectedException(t);
71              }
72              assertTrue(f.isDone());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines