Skip to content

Commit

Permalink
Fix compiletest on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Apr 3, 2013
1 parent 260d74d commit 34b2336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiletest/procsrv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn target_env(lib_path: ~str, prog: ~str) -> ~[(~str,~str)] {

// Make sure we include the aux directory in the path
assert!(prog.ends_with(~".exe"));
let aux_path = prog.slice(0u, prog.len() - 4u) + ~".libaux";
let aux_path = prog.slice(0u, prog.len() - 4u).to_owned() + ~".libaux";

env = do vec::map(env) |pair| {
let (k,v) = *pair;
Expand Down

5 comments on commit 34b2336

@bors
Copy link
Contributor

@bors bors commented on 34b2336 Apr 4, 2013

Choose a reason for hiding this comment

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

saw approval from luqmana
at brson@34b2336

@bors
Copy link
Contributor

@bors bors commented on 34b2336 Apr 4, 2013

Choose a reason for hiding this comment

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

merging brson/rust/compiletest = 34b2336 into auto

@bors
Copy link
Contributor

@bors bors commented on 34b2336 Apr 4, 2013

Choose a reason for hiding this comment

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

brson/rust/compiletest = 34b2336 merged ok, testing candidate = 783392f

@bors
Copy link
Contributor

@bors bors commented on 34b2336 Apr 4, 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 34b2336 Apr 4, 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 = 783392f

Please sign in to comment.