Uh oh!
There was an error while loading. Please reload this page.
libtest: add --list option to list tests and benchmarks - #38185
Conversation
rust-highfive
commented
Dec 5, 2016
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @sfackler (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
82f961a to
c4176cdCompareThere was a problem hiding this comment.
This can't actually return Ok(false), right?
There was a problem hiding this comment.
No, I was just following the return for the other function - but I'm fine with it being an io::Result<()> as well - or hoisting the two matches into one.
There was a problem hiding this comment.
Yeah, I'd probably have it return io::Result<()> then.
There was a problem hiding this comment.
Updated to return io::Result<()>
sfackler
commented
Dec 6, 2016
Seems reasonable to me, though I'll defer to @rust-lang/tools |
5fa648a to
c8d8d10Comparejsgf
commented
Dec 6, 2016
Use |
alexcrichton
commented
Dec 13, 2016
@bors: r+ |
bors
commented
Dec 13, 2016
📌 Commit c8d8d10 has been approved by |
bors
commented
Dec 14, 2016
🔒 Merge conflict |
bors
commented
Dec 14, 2016
☔ The latest upstream changes (presumably #38181) made this pull request unmergeable. Please resolve the merge conflicts. |
This option lists all the tests and benchmarks a binary provides. By default the listing is sent to stdout, but if --logfile is also specified, it is written there. If filters are specified, they're applied before the output is emitted.
alexcrichton
commented
Dec 14, 2016
@bors: r+ |
bors
commented
Dec 14, 2016
📌 Commit 516d105 has been approved by |
bors
commented
Dec 15, 2016
libtest: add --list option to list tests and benchmarks This option lists all the tests and benchmarks a binary provides without running any of them. By default the listing is sent to stdout (intended for human consumption), but if `--logfile` is also specified, it is also written there in an easily parsable form. If filters are specified, they're applied before the output is emitted. The human output will also include a summary unless `-q` is specified.
This option lists all the tests and benchmarks a binary provides without running any of them.
By default the listing is sent to stdout (intended for human consumption), but if
--logfileis also specified, it is also written there in an easily parsable form.If filters are specified, they're applied before the output is emitted. The human output will also include a summary unless
-qis specified.