about summary refs log tree commit diff
path: root/src/libtest/stats.rs
AgeCommit message (Collapse)AuthorLines
2014-04-11libtest: rename `BenchHarness` to `Bencher`Liigo Zhuang-5/+5
Closes #12640
2014-04-10Remove some internal ~[] from several libraries.Huon Wilson-4/+4
Some straggling instances of `~[]` across a few different libs. Also, remove some public ones from workcache.
2014-04-06De-~[] Mem{Reader,Writer}Steven Fackler-1/+1
2014-03-31test: Switch field privacy as necessaryAlex Crichton-12/+12
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2014-03-23use TotalEq for HashMapDaniel Micay-1/+1
Closes #5283
2014-03-22Remove nearly all uses of `~[]` from libtest.Huon Wilson-17/+18
Deny further uses, with explicit allows on a few specific functions.
2014-03-20rename std::vec -> std::sliceDaniel Micay-2/+2
Closes #12702
2014-03-14extra: Put the nail in the coffin, delete libextraAlex Crichton-0/+1056
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576