Skip to content

Commit

Permalink
Test fixes and rebase conflicts from rollups
Browse files Browse the repository at this point in the history
PRs closed as part of this:

Closes #12212 r=alexcrichton
Closes #12215 r=brson
Closes #12246 r=pcwalton
Closes #12247 r=cmr
Closes #12251 r=brson
Closes #12255 r=alexcrichton
Closes #12257 r=alexcrichton
Closes #12258 r=huonw
Closes #12259 r=huonw
Closes #12263 r=kballard
Closes #12269 r=alexcrichton
  • Loading branch information
alexcrichton committed Feb 14, 2014
1 parent 909fd0d commit 2f8dbf2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/librustuv/idle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ mod test {
match *slot.get() {
(ref mut task, ref mut val) => {
*val = n;
task.take_unwrap()
match task.take() {
Some(t) => t,
None => return
}
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion src/test/compile-fail/issue-8727.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@

struct Data(~Option<Data>);

fn generic<T>( _ : ~[(Data,T)] ) {let rec : ~[(Data,(bool,T))] = ~[]; generic( rec ); } //~ ERROR overly deep expansion of inlined function
fn generic<T>( _ : ~[(Data,T)] ) {
//~^ ERROR overly deep expansion of inlined function
let rec : ~[(Data,(bool,T))] = ~[];
generic( rec );
}


fn main () {
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/issue-8860.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-fast

extern mod green;

static mut DROP: int = 0i;
Expand Down

5 comments on commit 2f8dbf2

@bors
Copy link
Contributor

@bors bors commented on 2f8dbf2 Feb 14, 2014

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 alexcrichton@2f8dbf2

@bors
Copy link
Contributor

@bors bors commented on 2f8dbf2 Feb 14, 2014

Choose a reason for hiding this comment

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

merging alexcrichton/rust/rollup = 2f8dbf2 into auto

@bors
Copy link
Contributor

@bors bors commented on 2f8dbf2 Feb 14, 2014

Choose a reason for hiding this comment

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

alexcrichton/rust/rollup = 2f8dbf2 merged ok, testing candidate = 3f717bb

@bors
Copy link
Contributor

@bors bors commented on 2f8dbf2 Feb 14, 2014

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 2f8dbf2 Feb 14, 2014

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 = 3f717bb

Please sign in to comment.