Skip to content
Snippets Groups Projects
Commit be1a8ded authored by bors's avatar bors
Browse files

Auto merge of #1234 - gnzlbg:android_runtest, r=gnzlbg

Update runtest-android

Keep the implementation in sync with packed_simd and stdsimd.
parents 942f6ae7 6732bf1d
No related branches found
No related tags found
No related merge requests found
...@@ -3,14 +3,18 @@ use std::process::Command; ...@@ -3,14 +3,18 @@ use std::process::Command;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
fn main() { fn main() {
assert_eq!(env::args_os().len(), 2); let args = env::args_os()
let test = PathBuf::from(env::args_os().nth(1).unwrap()); .skip(1)
.filter(|arg| arg != "--quiet")
.collect::<Vec<_>>();
assert_eq!(args.len(), 1);
let test = PathBuf::from(&args[0]);
let dst = Path::new("/data/local/tmp").join(test.file_name().unwrap()); let dst = Path::new("/data/local/tmp").join(test.file_name().unwrap());
let status = Command::new("adb") let status = Command::new("adb")
.arg("wait-for-device") .arg("wait-for-device")
.status() .status()
.expect("failed to run rumprun-bake"); .expect("failed to run: adb wait-for-device");
assert!(status.success()); assert!(status.success());
let status = Command::new("adb") let status = Command::new("adb")
...@@ -18,14 +22,14 @@ fn main() { ...@@ -18,14 +22,14 @@ fn main() {
.arg(&test) .arg(&test)
.arg(&dst) .arg(&dst)
.status() .status()
.expect("failed to run rumprun-bake"); .expect("failed to run: adb pushr");
assert!(status.success()); assert!(status.success());
let output = Command::new("adb") let output = Command::new("adb")
.arg("shell") .arg("shell")
.arg(&dst) .arg(&dst)
.output() .output()
.expect("failed to run rumprun-bake"); .expect("failed to run: adb shell");
assert!(status.success()); assert!(status.success());
println!("status: {}\nstdout ---\n{}\nstderr ---\n{}", println!("status: {}\nstdout ---\n{}\nstderr ---\n{}",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment