summary refs log tree commit diff
path: root/library/test/src/console.rs
AgeCommit message (Collapse)AuthorLines
2022-07-22Lock stdout once when listing testsBen Kimock-1/+1
2022-04-05trivial cfg(bootstrap) changesPietro Albini-9/+1
2022-03-11Show ignore message in console and json outputAntonio Yang-1/+1
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-8/+8
This updates the standard library's documentation to use the new syntax. The documentation is worthwhile to update as it should be more idiomatic (particularly for features like this, which are nice for users to get acquainted with). The general codebase is likely more hassle than benefit to update: it'll hurt git blame, and generally updates can be done by folks updating the code if (and when) that makes things more readable with the new format. A few places in the compiler and library code are updated (mostly just due to already having been done when this commit was first authored).
2022-02-24Include ignore message in libtest outputAntonio Yang-2/+17
As an example: #[test] #[ignore = "not yet implemented"] fn test_ignored() { ... } Will now render as: running 2 tests test tests::test_ignored ... ignored, not yet implemented test result: ok. 1 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; finished in 0.00s
2022-01-28remove allow_fail test flagyuhaixin.hx-5/+1
2021-11-10Update more rustc/libtest things for wasm64Alex Crichton-1/+1
* Add wasm64 variants for inline assembly along the same lines as wasm32 * Update a few directives in libtest to check for `target_family` instead of `target_arch` * Update some rustc codegen and typechecks specialized for wasm32 to also work for wasm64.
2021-09-29Implement #85440Samuel E. Moelius III-2/+2
2021-07-18Fix compilation errors.Charles Lew-1/+1
2021-04-25feat(libtest): Add JUnit formatterAndrey Cherkashin-1/+2
2020-11-27libtest: Print the total time taken to execute a test suiteJakob Schikowski-1/+11
2020-07-27mv std libs to library/mark-0/+293