We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
adb shell
1 parent 02e95e5 commit 91bfe3fCopy full SHA for 91bfe3f
src/tools/compiletest/src/runtest.rs
@@ -515,6 +515,8 @@ actual:\n\
515
debug!("adb arg: {}", adb_arg);
516
let mut adb = Command::new(adb_path)
517
.args(&["shell", &adb_arg])
518
+ .stdout(Stdio::piped())
519
+ .stderr(Stdio::inherit())
520
.spawn()
521
.expect(&format!("failed to exec `{:?}`", adb_path));
522
0 commit comments