about summary refs log tree commit diff
path: root/src/libcore/tests/hash/mod.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-141/+0
2019-12-22Format the worldMark Rousskov-1/+2
2019-12-09Rollup merge of #67119 - RalfJung:miri-test-libstd, r=alexcrichtonTyler Mandry-2/+4
libstd miri tests: avoid warnings Ignore tests in a way that all the code still gets compiled, to get rid of all the "unused" warnings that otherwise show up when running the test suite in Miri.
2019-12-07fix warnings with cfg(miri)Ralf Jung-2/+4
2019-12-06Format libcore with rustfmt (including tests and benches)David Tolnay-13/+24
2019-02-13review or fix remaining miri failures in libcoreRalf Jung-2/+2
2019-02-07disable tests in MiriRalf Jung-0/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-25Add missing dynTatsuyuki Ishi-1/+1
2017-10-25Implement Hash for raw pointers to unsized typesMatt Brubeck-0/+8
2017-09-30address some `FIXME`s whose associated issues were marked as closedNiv Kaminer-2/+5
remove FIXME(#13101) since `assert_receiver_is_total_eq` stays. remove FIXME(#19649) now that stability markers render. remove FIXME(#13642) now the benchmarks were moved. remove FIXME(#6220) now that floating points can be formatted. remove FIXME(#18248) and write tests for `Rc<str>` and `Rc<[u8]>` remove reference to irelevent issues in FIXME(#1697, #2178...) update FIXME(#5516) to point to getopts issue 7 update FIXME(#7771) to point to RFC 628 update FIXME(#19839) to point to issue 26925
2017-09-12Disable the new Hasher tests on Emscripten.kennytm-0/+3
2017-09-12impl Hasher for {&mut Hasher, Box<Hasher>}kennytm-0/+10
2017-04-03Move libXtest into libX/testsStjepan Glavina-0/+111
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.