forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#128639 - folkertdev:rmake-thumb-none-qemu, r=…
…<try> migrate `thumb-none-qemu` to rmake tracking issue: rust-lang#121876 I think this one is actually simpler than rust-lang#128636, we invoke `cargo run` with the right target and see if the expected result appears. r? `@jieyouxu` try-job: armhf-gnu try-job: dist-various-1 try-job: test-various
- Loading branch information
Showing
4 changed files
with
51 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
//! How to run this | ||
//! $ ./x.py clean | ||
//! $ ./x.py test --target thumbv6m-none-eabi,thumbv7m-none-eabi tests/run-make | ||
//! | ||
//! For supported targets, see `example/.cargo/config` | ||
|
||
//@ only-thumb | ||
|
||
use std::path::PathBuf; | ||
|
||
use run_make_support::{cmd, env_var}; | ||
|
||
const CRATE: &str = "example"; | ||
|
||
fn main() { | ||
std::env::set_current_dir(CRATE).unwrap(); | ||
|
||
let target = env_var("TARGET"); | ||
let bootstrap_cargo = env_var("BOOTSTRAP_CARGO"); | ||
let path = env_var("PATH"); | ||
let rustc = env_var("RUSTC"); | ||
|
||
let target_dir = PathBuf::from("target"); | ||
let manifest_path = PathBuf::from("Cargo.toml"); | ||
|
||
let debug = { | ||
let mut cmd = cmd(&bootstrap_cargo); | ||
cmd.args(&["run", "--target", &target]) | ||
.env("RUSTFLAGS", "-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x") | ||
.env("CARGO_TARGET_DIR", &target_dir) | ||
.env("PATH", &path) | ||
.env("RUSTC", &rustc); | ||
cmd.run() | ||
}; | ||
|
||
let stdout = debug.stdout_utf8(); | ||
assert!(stdout.contains("x = 42"), "stdout: {:?}", stdout); | ||
|
||
let release = { | ||
let mut cmd = cmd(&bootstrap_cargo); | ||
cmd.args(&["run", "--release", "--target", &target]) | ||
.env("RUSTFLAGS", "-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x") | ||
.env("CARGO_TARGET_DIR", &target_dir) | ||
.env("PATH", &path) | ||
.env("RUSTC", &rustc); | ||
cmd.run() | ||
}; | ||
|
||
let stdout = release.stdout_utf8(); | ||
assert!(stdout.contains("x = 42"), "stdout: {:?}", stdout); | ||
} |
This file was deleted.
Oops, something went wrong.