From 89b0e6e12ba2fb24ec0e6655a1130c16eb8d1745 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 14 Jun 2014 11:03:34 -0700 Subject: Register new snapshots --- src/libtest/lib.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/libtest') diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 9108a2c9459..e7c35fb59ee 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -346,16 +346,16 @@ environment variable. Logging is not captured by default. Test Attributes: - \#[test] - Indicates a function is a test to be run. This function + #[test] - Indicates a function is a test to be run. This function takes no arguments. - \#[bench] - Indicates a function is a benchmark to be run. This + #[bench] - Indicates a function is a benchmark to be run. This function takes one argument (test::Bencher). - \#[should_fail] - This function (also labeled with \#[test]) will only pass if + #[should_fail] - This function (also labeled with #[test]) will only pass if the code causes a failure (an assertion failure or fail!) - \#[ignore] - When applied to a function which is already attributed as a + #[ignore] - When applied to a function which is already attributed as a test, then the test runner will ignore these tests during normal test runs. Running with --ignored will run these - tests. This may also be written as \#[ignore(cfg(...))] to + tests. This may also be written as #[ignore(cfg(...))] to ignore the test on certain configurations.", usage = getopts::usage(message.as_slice(), optgroups().as_slice())); @@ -473,7 +473,7 @@ pub enum TestResult { } enum OutputLocation { - Pretty(Box>:Send>), + Pretty(Box> + Send>), Raw(T), } @@ -1049,8 +1049,8 @@ pub fn run_test(opts: &TestOpts, if nocapture { drop((stdout, stderr)); } else { - task.opts.stdout = Some(box stdout as Box); - task.opts.stderr = Some(box stderr as Box); + task.opts.stdout = Some(box stdout as Box); + task.opts.stderr = Some(box stderr as Box); } let result_future = task.future_result(); task.spawn(testfn); -- cgit 1.4.1-3-g733a5