You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 ()
```
0 commit comments