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.49 by jsr166, Sun Oct 22 01:26:49 2017 UTC vs.
Revision 1.50 by jsr166, Wed Nov 8 02:21:43 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 (Exception t) {
54 >            } catch (Throwable 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 (Exception t) {
69 >            } catch (Throwable t) {
70                  threadUnexpectedException(t);
71              }
72              assertTrue(f.isDone());
# Line 108 | Line 108 | public class FutureTaskTest extends JSR1
108          try {
109              assertSame(expected, f.get());
110              assertSame(expected, f.get(randomTimeout(), randomTimeUnit()));
111 <        } catch (Exception fail) { threadUnexpectedException(fail); }
111 >        } catch (Throwable fail) { threadUnexpectedException(fail); }
112      }
113  
114      void checkCancelled(Future<?> f) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines