mirror of
https://github.com/openharmony/third_party_rust_libc.git
synced 2026-07-21 02:15:44 -04:00
adeb8b467f
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
50 lines
1.4 KiB
Rust
50 lines
1.4 KiB
Rust
use std::env;
|
|
use std::process::Command;
|
|
use std::path::{Path, PathBuf};
|
|
|
|
fn main() {
|
|
let args = env::args_os()
|
|
.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 status = Command::new("adb")
|
|
.arg("wait-for-device")
|
|
.status()
|
|
.expect("failed to run: adb wait-for-device");
|
|
assert!(status.success());
|
|
|
|
let status = Command::new("adb")
|
|
.arg("push")
|
|
.arg(&test)
|
|
.arg(&dst)
|
|
.status()
|
|
.expect("failed to run: adb push");
|
|
assert!(status.success());
|
|
|
|
let output = Command::new("adb")
|
|
.arg("shell")
|
|
.arg("RUST_BACKTRACE=1")
|
|
.arg(&dst)
|
|
.output()
|
|
.expect("failed to run: adb shell");
|
|
assert!(status.success());
|
|
|
|
let stdout = String::from_utf8_lossy(&output.stdout);
|
|
let stderr = String::from_utf8_lossy(&output.stderr);
|
|
|
|
println!("status: {}\nstdout ---\n{}\nstderr ---\n{}",
|
|
output.status,
|
|
stdout,
|
|
stderr);
|
|
|
|
if !stderr.lines().any(|l| (l.starts_with("PASSED ") && l.contains(" tests")) || l.starts_with("test result: ok"))
|
|
&& !stdout.lines().any(|l| (l.starts_with("PASSED ") && l.contains(" tests")) || l.starts_with("test result: ok"))
|
|
{
|
|
panic!("failed to find successful test run");
|
|
};
|
|
}
|