about summary refs log tree commit diff
path: root/src/libcoretest/clone.rs
AgeCommit message (Collapse)AuthorLines
2017-04-03Move libXtest into libX/testsStjepan Glavina-25/+0
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.
2015-10-16Add unused modules to libcoretestFlorian Hahn-17/+3
2015-01-30Remove all `i` suffixesTobias Bucher-3/+3
2014-06-29Extract tests from libcore to a separate crateSteven Fackler-0/+39
Libcore's test infrastructure is complicated by the fact that many lang items are defined in the crate. The current approach (realcore/realstd imports) is hacky and hard to work with (tests inside of core::cmp haven't been run for months!). Moving tests to a separate crate does mean that they can only test the public API of libcore, but I don't feel that that is too much of an issue. The only tests that I had to get rid of were some checking the various numeric formatters, but those are also exercised through normal format! calls in other tests.