about summary refs log tree commit diff
path: root/src/libtest
AgeCommit message (Expand)AuthorLines
2020-05-11Fix clippy warningsMatthias Krüger-2/+2
2020-04-14Add illumos triplePatrick Mooney-0/+1
2020-04-06Stop importing float module in libtestLinus Färnstrand-1/+0
2020-03-26Rename asm! to llvm_asm!Amanieu d'Antras-1/+0
2020-03-23Request "-Z unstable-options" for unstable optionsJubilee-1/+1
2020-03-14Rollup merge of #69802 - matthiaskrgr:cl1ppy, r=Dylan-DPCYuki Okushi-14/+14
2020-03-07reduce references on match patterns (clippy::match_ref_pats)Matthias Krüger-4/+4
2020-03-07Use writeln!(fmt, "word") instead of write!(fmt, "word\n") (clippy::write_wit...Matthias Krüger-1/+1
2020-03-07libtest: remove redundant argument to writeln!() (clippy::writeln_empty_string)Matthias Krüger-1/+1
2020-03-07libtest: declare variables as floats instead of casting them (clippy::unneces...Matthias Krüger-8/+8
2020-03-06fix various typosMatthias Krüger-3/+3
2020-03-05Don't always eval arguments inside .expect(), use unwrap_or_else and closure....Matthias Krüger-1/+1
2020-03-05Const items have by default a static lifetime, there's no need to annotate it...Matthias Krüger-1/+1
2020-03-01Rollup merge of #69580 - matthiaskrgr:map_clone, r=CentrilYuki Okushi-1/+1
2020-02-29Make it build againVadim Petrochenkov-2/+2
2020-02-29use .copied() instead of .map(|x| *x) on iteratorsMatthias Krüger-1/+1
2020-02-28use is_empty() instead of len() == x to determine if structs are empty.Matthias Krüger-1/+1
2020-02-06Respect --nocapture in panic=abort test modeTyler Mandry-9/+17
2020-02-04remove redundant imports (clippy::single_component_path_imports)Matthias Krüger-3/+0
2020-01-17Rollup merge of #68301 - tmandry:dont-propagate-test-invoke, r=alexcrichtonDylan DPC-1/+2
2020-01-16Don't propagate __RUST_TEST_INVOKE to subprocessTyler Mandry-1/+2
2020-01-16don't clone types that are copyMatthias Krüger-3/+1
2020-01-15remove redundant clones, found by clippyMatthias Krüger-2/+2
2020-01-10Clarify test timeout evironment variablesMikail Bagishov-0/+2
2019-12-22Format the worldMark Rousskov-390/+219
2019-12-06Use `Instant::now` lazilyvarkor-2/+2
2019-12-06Rename to `then_some` and `then`varkor-2/+2
2019-12-06Use `to_option` in various placesvarkor-10/+3
2019-11-19Simplify if else as suggested in PR feedbackThomas Etter-20/+16
2019-11-18replace some asserts with assert_eq for better error readabilityThomas Etter-6/+6
2019-11-18print a more useful error message on should_panic mismatchThomas Etter-7/+50
2019-11-15Add --force-run-in-process unstable libtest optionTyler Mandry-1/+6
2019-11-06Replace `array.into_iter()` with `iter()` in `libtest/tests.rs`Lukas Kalbertodt-2/+2
2019-10-29Rollup merge of #65898 - hermitcore:rusty-hermit, r=kennytmTyler Mandry-1/+7
2019-10-28removing trailing whitespacesStefan Lankes-1/+1
2019-10-28add basic HermitCore support within libtestStefan Lankes-1/+7
2019-10-25Re-enable Emscripten's exception handling supportThomas Lively-2/+2
2019-10-23Rollup merge of #64178 - mati865:clippy, r=scottmcmMazdak Farrokhzad-4/+4
2019-10-23Public some types for compiletest_rsLzu Tao-3/+4
2019-10-22Apply clippy::needless_return suggestionsMateusz Mikuła-4/+4
2019-10-21Remove unneccessary use under cfg(unix)Igor Aleksanov-12/+2
2019-10-18Add public re-exports for benchesIgor Aleksanov-2/+4
2019-10-17Improve code styleIgor Aleksanov-21/+41
2019-10-17Add more explaining comments to the codeIgor Aleksanov-68/+94
2019-10-17Split options parsing into several functionsIgor Aleksanov-123/+179
2019-10-17Make enum usage explicit and fix testsIgor Aleksanov-161/+289
2019-10-17Extract ConsoleTestStateIgor Aleksanov-286/+317
2019-10-17Split libtest into several smaller modulesIgor Aleksanov-1385/+1462
2019-10-16Upgrade Emscripten targets to use upstream LLVM backendThomas Lively-5/+16
2019-10-12Auto merge of #64873 - popzxc:prettify-test-time, r=wesleywiserbors-117/+593