X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibtest%2Flib.rs;h=810a98e4a014cb4f54fbfefc28352286cce9f131;hb=760a98fb5e1c964efbe5cb36710fff892b547c51;hp=7f7db2a21251ac8864bcc07faf4a30001c2d6634;hpb=90788159d7f1f0458352b8849cf9bb80ceed50a1;p=rust.git diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 7f7db2a2125..810a98e4a01 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -22,7 +22,6 @@ #![unstable(feature = "test", issue = "27812")] #![doc(html_root_url = "https://doc.rust-lang.org/nightly/", test(attr(deny(warnings))))] #![feature(asm)] -#![feature(fnbox)] #![cfg_attr(any(unix, target_os = "cloudabi"), feature(libc, rustc_private))] #![feature(nll)] #![feature(set_stdio)] @@ -56,7 +55,6 @@ use std::any::Any; use std::borrow::Cow; -use std::boxed::FnBox; use std::cmp; use std::collections::BTreeMap; use std::env; @@ -174,7 +172,7 @@ pub trait TDynBenchFn: Send { pub enum TestFn { StaticTestFn(fn()), StaticBenchFn(fn(&mut Bencher)), - DynTestFn(Box), + DynTestFn(Box), DynBenchFn(Box), } @@ -1447,7 +1445,7 @@ fn run_test_inner( desc: TestDesc, monitor_ch: Sender, nocapture: bool, - testfn: Box, + testfn: Box, concurrency: Concurrent, ) { // Buffer for capturing standard I/O @@ -1538,7 +1536,7 @@ fn calc_result(desc: &TestDesc, task_result: Result<(), Box>) -> if desc.allow_fail { TrAllowedFail } else { - TrFailedMsg(format!("Panic did not include expected string '{}'", msg)) + TrFailedMsg(format!("panic did not include expected string '{}'", msg)) } } } @@ -1892,7 +1890,7 @@ fn f() { panic!("an error message"); } let expected = "foobar"; - let failed_msg = "Panic did not include expected string"; + let failed_msg = "panic did not include expected string"; let desc = TestDescAndFn { desc: TestDesc { name: StaticTestName("whatever"),