-
Notifications
You must be signed in to change notification settings - Fork 19
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
Possibility to replace self-maintained test utility with assert_cli
#21
Comments
Does it spawn actual processes? Ours just creates new threads and executes the commands in-process so that code coverage works. |
Oh,that issue is caused by |
It works as expected.
|
For the issue I mentioned here: https://github.com/rust-lang-nursery/cli-wg/issues/9#issuecomment-385530575 It can be solve with a rustc wrapper: https://github.com/mesalock-linux/mesabox/blob/master/ci/cov-rustc In this way, we can add coverage-related flags to both |
I'm not opposed to this change then (assuming |
assert_cmd
assert_cli
Sorry, should be Edit: I'm working on this in this PR: #24 |
Merged. |
Can we replace our self-maintained test utility with
assert_cmd
? (https://github.com/assert-rs/assert_cmd). Seems thatassert_cmd
provides most of functions we have, but I'm not sure what is still missing.The text was updated successfully, but these errors were encountered: