| Age | Commit message (Expand) | Author | Lines |
| 2020-05-11 | Fix clippy warnings | Matthias Krüger | -2/+2 |
| 2020-04-14 | Add illumos triple | Patrick Mooney | -0/+1 |
| 2020-04-06 | Stop importing float module in libtest | Linus Färnstrand | -1/+0 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -1/+0 |
| 2020-03-23 | Request "-Z unstable-options" for unstable options | Jubilee | -1/+1 |
| 2020-03-14 | Rollup merge of #69802 - matthiaskrgr:cl1ppy, r=Dylan-DPC | Yuki Okushi | -14/+14 |
| 2020-03-07 | reduce references on match patterns (clippy::match_ref_pats) | Matthias Krüger | -4/+4 |
| 2020-03-07 | Use writeln!(fmt, "word") instead of write!(fmt, "word\n") (clippy::write_wit... | Matthias Krüger | -1/+1 |
| 2020-03-07 | libtest: remove redundant argument to writeln!() (clippy::writeln_empty_string) | Matthias Krüger | -1/+1 |
| 2020-03-07 | libtest: declare variables as floats instead of casting them (clippy::unneces... | Matthias Krüger | -8/+8 |
| 2020-03-06 | fix various typos | Matthias Krüger | -3/+3 |
| 2020-03-05 | Don't always eval arguments inside .expect(), use unwrap_or_else and closure.... | Matthias Krüger | -1/+1 |
| 2020-03-05 | Const items have by default a static lifetime, there's no need to annotate it... | Matthias Krüger | -1/+1 |
| 2020-03-01 | Rollup merge of #69580 - matthiaskrgr:map_clone, r=Centril | Yuki Okushi | -1/+1 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -2/+2 |
| 2020-02-29 | use .copied() instead of .map(|x| *x) on iterators | Matthias Krüger | -1/+1 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-06 | Respect --nocapture in panic=abort test mode | Tyler Mandry | -9/+17 |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -3/+0 |
| 2020-01-17 | Rollup merge of #68301 - tmandry:dont-propagate-test-invoke, r=alexcrichton | Dylan DPC | -1/+2 |
| 2020-01-16 | Don't propagate __RUST_TEST_INVOKE to subprocess | Tyler Mandry | -1/+2 |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -3/+1 |
| 2020-01-15 | remove redundant clones, found by clippy | Matthias Krüger | -2/+2 |
| 2020-01-10 | Clarify test timeout evironment variables | Mikail Bagishov | -0/+2 |
| 2019-12-22 | Format the world | Mark Rousskov | -390/+219 |
| 2019-12-06 | Use `Instant::now` lazily | varkor | -2/+2 |
| 2019-12-06 | Rename to `then_some` and `then` | varkor | -2/+2 |
| 2019-12-06 | Use `to_option` in various places | varkor | -10/+3 |
| 2019-11-19 | Simplify if else as suggested in PR feedback | Thomas Etter | -20/+16 |
| 2019-11-18 | replace some asserts with assert_eq for better error readability | Thomas Etter | -6/+6 |
| 2019-11-18 | print a more useful error message on should_panic mismatch | Thomas Etter | -7/+50 |
| 2019-11-15 | Add --force-run-in-process unstable libtest option | Tyler Mandry | -1/+6 |
| 2019-11-06 | Replace `array.into_iter()` with `iter()` in `libtest/tests.rs` | Lukas Kalbertodt | -2/+2 |
| 2019-10-29 | Rollup merge of #65898 - hermitcore:rusty-hermit, r=kennytm | Tyler Mandry | -1/+7 |
| 2019-10-28 | removing trailing whitespaces | Stefan Lankes | -1/+1 |
| 2019-10-28 | add basic HermitCore support within libtest | Stefan Lankes | -1/+7 |
| 2019-10-25 | Re-enable Emscripten's exception handling support | Thomas Lively | -2/+2 |
| 2019-10-23 | Rollup merge of #64178 - mati865:clippy, r=scottmcm | Mazdak Farrokhzad | -4/+4 |
| 2019-10-23 | Public some types for compiletest_rs | Lzu Tao | -3/+4 |
| 2019-10-22 | Apply clippy::needless_return suggestions | Mateusz Mikuła | -4/+4 |
| 2019-10-21 | Remove unneccessary use under cfg(unix) | Igor Aleksanov | -12/+2 |
| 2019-10-18 | Add public re-exports for benches | Igor Aleksanov | -2/+4 |
| 2019-10-17 | Improve code style | Igor Aleksanov | -21/+41 |
| 2019-10-17 | Add more explaining comments to the code | Igor Aleksanov | -68/+94 |
| 2019-10-17 | Split options parsing into several functions | Igor Aleksanov | -123/+179 |
| 2019-10-17 | Make enum usage explicit and fix tests | Igor Aleksanov | -161/+289 |
| 2019-10-17 | Extract ConsoleTestState | Igor Aleksanov | -286/+317 |
| 2019-10-17 | Split libtest into several smaller modules | Igor Aleksanov | -1385/+1462 |
| 2019-10-16 | Upgrade Emscripten targets to use upstream LLVM backend | Thomas Lively | -5/+16 |
| 2019-10-12 | Auto merge of #64873 - popzxc:prettify-test-time, r=wesleywiser | bors | -117/+593 |