about summary refs log tree commit diff
path: root/src/liballoc/collections/linked_list/tests.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-457/+0
2020-05-01liballoc tests: Miri supports threads nowRalf Jung-1/+0
2020-01-14Update APIs according to RFC change suggestions.Charles Lew-8/+52
2020-01-12Address review comments.Charles Lew-0/+9
2020-01-12Address review comments.Charles Lew-5/+6
2020-01-12Implement Cursor for linked lists. (RFC 2570).Charles Lew-0/+98
2019-12-07liballoc: ignore tests in Miri instead of removing them entirelyRalf Jung-1/+1
2019-11-29Format liballoc with rustfmtDavid Tolnay-9/+8
2019-10-02Add test for LinkedList clone_fromCharles Gleason-0/+43
2019-09-06A few cosmetic improvements to code & comments in liballoc and libcoreAlexander Regueiro-2/+2
2019-08-02Remove some more `cfg(test)`sVadim Petrochenkov-1/+0
2019-08-02liballoc: Unconfigure tests during normal buildVadim Petrochenkov-0/+265
Remove additional libcore-like restrictions from liballoc, turns out the testing works ok if the tests are a part of liballoc itself.