Skip to content

Commit

Permalink
Fixes to the roll-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Bukaj committed Nov 23, 2014
1 parent 69a217f commit d6b023a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compiletest/runtest.rs
Expand Up @@ -990,7 +990,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
let i = s.chars();
let c : Vec<char> = i.map( |c| {
if c.is_ascii() {
c.to_ascii().to_lowercase().to_char()
c.to_ascii().to_lowercase().as_char()
} else {
c
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/pretty/issue-19077.rs
Expand Up @@ -13,7 +13,7 @@
fn main() {
match true {
true if true => (),
false => unsafe { },
false if false => unsafe { },
true => { }
false => (),
}
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/super-fast-paren-parsing.rs
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-pretty
//
// exec-env:RUST_MIN_STACK=16000000
//
// Big stack is needed for pretty printing, a little sad...
Expand Down

5 comments on commit d6b023a

@bors
Copy link
Contributor

@bors bors commented on d6b023a Nov 23, 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 d6b023a Nov 23, 2014

Choose a reason for hiding this comment

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

merging jakub-/rust/roll-up = d6b023a into auto

@bors
Copy link
Contributor

@bors bors commented on d6b023a Nov 23, 2014

Choose a reason for hiding this comment

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

jakub-/rust/roll-up = d6b023a merged ok, testing candidate = 4e52595

@bors
Copy link
Contributor

@bors bors commented on d6b023a Nov 23, 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 d6b023a Nov 23, 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 = 4e52595

Please sign in to comment.