Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STM: Print commands that trigger uncaught exceptions
The standard QCheck mechanism to catch exceptions that are raised in tests do not give much clue about the source (ie STM command) of that exception This packs the unsoundly-specified command with the exception in such a case so that it can be displayed Before: ``` exception Failure("unexpected") ``` After: ``` exception Failure("unexpected") raised but not caught while running AlwaysFail () ```
- Loading branch information