Skip to content

Commit 34b2336

Browse files
committedApr 3, 2013
Fix compiletest on windows
1 parent 260d74d commit 34b2336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/compiletest/procsrv.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn target_env(lib_path: ~str, prog: ~str) -> ~[(~str,~str)] {
2626

2727
// Make sure we include the aux directory in the path
2828
assert!(prog.ends_with(~".exe"));
29-
let aux_path = prog.slice(0u, prog.len() - 4u) + ~".libaux";
29+
let aux_path = prog.slice(0u, prog.len() - 4u).to_owned() + ~".libaux";
3030
3131
env = do vec::map(env) |pair| {
3232
let (k,v) = *pair;

5 commit comments

Comments
 (5)

bors commented on Apr 4, 2013

@bors
Collaborator

saw approval from luqmana
at brson@34b2336

bors commented on Apr 4, 2013

@bors
Collaborator

merging brson/rust/compiletest = 34b2336 into auto

bors commented on Apr 4, 2013

@bors
Collaborator

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

bors commented on Apr 4, 2013

@bors
Collaborator

fast-forwarding incoming to auto = 783392f

Please sign in to comment.