libtest icon indicating copy to clipboard operation
libtest copied to clipboard

Rust's built-in testing and benchmarking framework

Results 12 libtest issues
Sort by recently updated
recently updated
newest added

2 years without changes and the main rust repo seems to have a very similar looking https://github.com/rust-lang/rust/tree/master/library/test/src If this repo is not used anymore, could that please be made more...

I'd like to be able to get a json-formatted list of the tests and benches. This isn't a huge deal, because the output is pretty simple to parse with regex....

This PR adds a very basic JUnit formatter, and should probably not be merged without further discussion. This output format is widely used, but sadly is not standardized. The best...

My test cases sometimes leave zombie threads hanging around, which sometimes causes issues in unrelated test cases. I'd like to be able to run one test case per process for...

I _think_ I've got the right repo but please let me know if I need to move this elsewhere 😄 I was just wondering if you have a ballpark timeline/roadmap...

This PR makes libtest work on stable Rust by default. The stable and beta release channels are now tested on CI, and the crate was migrated to use the stable...

FnBox has been removed, this commit fixes the build with the latest nightly.

`libc:isatty` is now available on Redox, so it can be used instead of the stub. A new release of the crate would be good, so that this can be used...

The original goal of this cleanup was to remove all uses of `ref` and `ref mut`, but I ended up doing other things too, including some potentially controversial ones: *...

None of the most important crates outside rustc has a "lib" prefix. If this is supposed to be used by most users, maybe it's a good idea to just call...