about summary refs log tree commit diff
path: root/src/libtest/stats.rs
AgeCommit message (Expand)AuthorLines
2020-03-07libtest: declare variables as floats instead of casting them (clippy::unneces...Matthias Krüger-8/+8
2019-09-29Enhance report-time optionIgor Aleksanov-1/+1
2019-08-02libtest: Unconfigure tests during normal buildVadim Petrochenkov-31/+3
2019-06-16Separate libtest modulechansuke-576/+1
2019-04-07Revert "Auto merge of #57842 - gnzlbg:extract_libtest, r=gnzlbg"Jacob Greenfield-0/+922
2019-03-19Move libtest out of rust-lang/rustgnzlbg-922/+0
2019-02-04Transition libtest to 2018 editionHirokazu Hata-3/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-1/+1
2018-09-04Introduce Custom Test FrameworksJohn Renner-1/+2
2018-03-21Cargo fmt libtestSeiichi Uchida-9/+14
2018-01-26libtest: rustfmt runGilad Naaman-241/+263
2018-01-01Fix docs for future pulldown migrationMalo Jaffré-9/+9
2017-04-04Fix linkssteveklabnik-2/+4
2017-02-27fix typoking6cong-2/+2
2017-01-02do not run outter part of benchmarks multimple times to fix issue 20142Craig Macomber-1/+4
2016-06-05run rustfmt on libtest folderSrinivas Reddy Thatiparthy-2/+1
2016-01-19rustfmt libtestNick Cameron-291/+262
2015-04-21std: Bring back f32::from_str_radix as an unstable APIAlex Crichton-2/+1
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-74/+73
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-4/+4
2015-04-14test: Fixup many library unit testsAlex Crichton-3/+3
2015-03-31Stabilize std::numAaron Turon-0/+1
2015-03-20std: Remove old_io/old_path from the preludeAlex Crichton-1/+1
2015-03-15Use new io in print and println macrosesSimonas Kazlauskas-19/+0
2015-03-02core: Audit num module for int/uintBrian Anderson-12/+12
2015-02-22Record default implementations in a separate stepFlavio Percoco-0/+1
2015-02-18rollup merge of #22497: nikomatsakis/suffixesAlex Crichton-1/+1
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-2/+2
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-9/+9
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-01-29fix inference falloutJorge Aparicio-1/+1
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-1/+1
2015-01-26Fallout of io => old_ioAlex Crichton-2/+2
2015-01-22Remove remaining stats and boxplot code.Ahmed Charles-130/+0
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-07std: Stabilize the std::hash moduleAlex Crichton-2/+2
2015-01-06rollup merge of #20653: alexcrichton/entry-unstableAlex Crichton-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-3/+3
2015-01-06[breaking change] Revert Entry behaviour to take keys by value.Dylan Ede-1/+1
2015-01-06Merge core::num::Float and std::num::FloatMath.Huon Wilson-4/+4
2015-01-05rollup merge of #20556: japaric/no-for-sizedAlex Crichton-1/+1
2015-01-05rollup merge of #20554: huonw/mut-patternAlex Crichton-1/+2
2015-01-05sed -i -s 's/ for Sized?//g' **/*.rsJorge Aparicio-1/+1
2015-01-05Change `&` pat to only work with &T, and `&mut` with &mut T.Huon Wilson-1/+2