Skip to content

Commit

Permalink
fix check-fast tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
huonw committed Dec 22, 2013
1 parent 2e8c522 commit 645fff4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/run-pass/vector-sort-failure-safe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use std::task;
use std::rand::{task_rng, Rng};

static MAX_LEN: uint = 20;
Expand Down Expand Up @@ -60,7 +61,7 @@ pub fn main() {

let v = main.clone();

std::task::try(proc() {
task::try(proc() {
let mut v = v;
let mut fail_countdown = fail_countdown;
v.sort_by(|a, b| {
Expand Down

5 comments on commit 645fff4

@bors
Copy link
Contributor

@bors bors commented on 645fff4 Dec 22, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at huonw@645fff4

@bors
Copy link
Contributor

@bors bors commented on 645fff4 Dec 22, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging huonw/rust/vec-sort = 645fff4 into auto

@bors
Copy link
Contributor

@bors bors commented on 645fff4 Dec 22, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

huonw/rust/vec-sort = 645fff4 merged ok, testing candidate = 55cbef6

@bors
Copy link
Contributor

@bors bors commented on 645fff4 Dec 22, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 645fff4 Dec 22, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 55cbef6

Please sign in to comment.