Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lots of small changes | Arne Döring | 2018-12-11 | 1 | -1/+1 |
| | |||||
* | require errormsg to be specified before file. | Arne Döring | 2018-12-11 | 1 | -2/+1 |
| | |||||
* | make tests green again | Andreas Rumpf | 2018-07-05 | 1 | -1/+1 |
| | |||||
* | Reverts 1446dc87c3. Fixes #4333. Fixes #4170. | Dominik Picheta | 2016-06-15 | 1 | -0/+2 |
| | |||||
* | Improve asyncdispatch error messages, fix some tests on Windows. | Dominik Picheta | 2015-09-11 | 1 | -1/+1 |
| | |||||
* | Async await try statement fixes. | Dominik Picheta | 2015-02-09 | 1 | -1/+0 |
| | |||||
* | Fixes async tests. | Dominik Picheta | 2014-09-09 | 1 | -3/+3 |
| | |||||
* | fix failed tests due to gcsafe | Araq | 2014-08-12 | 1 | -8/+10 |
| | |||||
* | Fixes incorrect async exception handling. Adds sleepAsync. | Dominik Picheta | 2014-08-09 | 1 | -0/+38 |
The tasyncexceptions test has been added which tests for this incorrect exception handling behaviour. The problem was that the exception was raised inside a callback which was called from a previously finished async procedure. This caused a "Future already finished" error. The fix was to simply reraise the exception if the retFutureSym is already finished. sleepAsync was added to help with the reproduction of this test. It should also be useful for users however. Finally some debug information was added to futures to help with future bugs. |