about summary refs log tree commit diff
path: root/src/libcore/tests/num/bignum.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-241/+0
2019-12-06Format libcore with rustfmt (including tests and benches)David Tolnay-6/+10
2019-11-29Remove unneeded prelude imports in libcore testsDavid Tolnay-1/+0
These three lines are from c82da7a54b9efb1a0ccbe11de66c71f547bf7db9 in 2015. They cause problems when applying rustfmt to the codebase, because reordering wildcard imports can trigger new unused import warnings. As a minimized example, the following program compiles successfully: #![deny(unused_imports)] use std::fmt::Debug; use std::marker::Send; pub mod repro { use std::prelude::v1::*; use super::*; pub type D = dyn Debug; pub type S = dyn Send; } pub type S = dyn Send; but putting it through rustfmt produces a program that fails to compile: #![deny(unused_imports)] use std::fmt::Debug; use std::marker::Send; pub mod repro { use super::*; use std::prelude::v1::*; pub type D = dyn Debug; pub type S = dyn Send; } pub type S = dyn Send; The error is: error: unused import: `std::prelude::v1::*` --> src/main.rs:8:9 | 8 | use std::prelude::v1::*; | ^^^^^^^^^^^^^^^^^^^
2019-04-22Remove double trailing newlinesvarkor-1/+0
2019-03-10we can now skip should_panic tests with the libtest harnessRalf Jung-14/+0
2019-02-13review or fix remaining miri failures in libcoreRalf Jung-0/+14
2018-12-25Remove licensesMark Rousskov-10/+0
2017-04-03Move libXtest into libX/testsStjepan Glavina-0/+249
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.