-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run_parallel_commands doesn't handle exceptions in commands the same way run_commands does #224
Comments
Please submit a minimal test case that illustrates the issue. |
I can, but it'll be in Elixir using PropCheck library (a thin wrapper around PropEr); my Erlang is not that strong. But I've traced the origin of it:
So when a SUT has a crashes, |
Well, you've came to the PropEr (TM) repository. Here you have your chance to strengthen your Erlang skills ;-) |
Which runs on a BEAM™ that supports many other languages. Here you have your chance to make us feel included ;) |
@kostis test case added, see commit x4lldux/proper@c932eef |
Also, the docs for |
When a command crashes during
run_parallel_commands
, the entire test just crashes also, whilerun_commands
catches such a situation and returns aexception
tuple as a result. Shouldn't they work the same way?The text was updated successfully, but these errors were encountered: