Skip to content

Commit

Permalink
compiletest: update for language change
Browse files Browse the repository at this point in the history
  • Loading branch information
yichoi committed Jun 1, 2013
1 parent 89c5ad6 commit 18bee38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiletest/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ fn _arm_exec_compiled_test(config: &config, props: &TestProps,

let mut exitcode : int = 0;
for str::each_char(exitcode_out) |c| {
if !char::is_digit(c) { break; }
if !c.is_digit() { break; }
exitcode = exitcode * 10 + match c {
'0' .. '9' => c as int - ('0' as int),
_ => 101,
Expand Down

5 comments on commit 18bee38

@bors
Copy link
Contributor

@bors bors commented on 18bee38 Jun 2, 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 18bee38 Jun 2, 2013

Choose a reason for hiding this comment

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

merging yichoi/rust/arm-test = 18bee38 into auto

@bors
Copy link
Contributor

@bors bors commented on 18bee38 Jun 2, 2013

Choose a reason for hiding this comment

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

yichoi/rust/arm-test = 18bee38 merged ok, testing candidate = dad9456

@bors
Copy link
Contributor

@bors bors commented on 18bee38 Jun 2, 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 18bee38 Jun 2, 2013

Choose a reason for hiding this comment

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

fast-forwarding incoming to auto = dad9456

Please sign in to comment.