Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/compiletest/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,15 @@ actual:\n\

fn make_typecheck_args(config: &config, props: &TestProps, testfile: &Path) -> ProcArgs {
let aux_dir = aux_output_dir_name(config, testfile);
let target = if props.force_host {
config.host.as_slice()
} else {
config.target.as_slice()
};
// FIXME (#9639): This needs to handle non-utf8 paths
let mut args = ~[~"-",
~"--no-trans", ~"--lib",
~"--target=" + target,
~"-L", config.build_base.as_str().unwrap().to_owned(),
~"-L",
aux_dir.as_str().unwrap().to_owned()];
Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/macro-crate-unexported-macro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

// aux-build:macro_crate_test.rs
// xfail-stage1
// xfail-android

#[feature(phase)];

Expand Down
1 change: 1 addition & 0 deletions src/test/compile-fail/phase-syntax-doesnt-resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

// aux-build:macro_crate_test.rs
// xfail-stage1
// xfail-android

#[feature(phase)];

Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass-fulldeps/macro-crate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
// aux-build:macro_crate_test.rs
// xfail-stage1
// xfail-fast
// xfail-android

#[feature(phase)];

Expand Down