We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d54ebe + bbdbb65 commit ae98ebfCopy full SHA for ae98ebf
src/bootstrap/lib.rs
@@ -920,7 +920,8 @@ impl Build {
920
/// Returns whether the target will be tested using the `remote-test-client`
921
/// and `remote-test-server` binaries.
922
fn remote_tested(&self, target: &str) -> bool {
923
- self.qemu_rootfs(target).is_some() || target.contains("android")
+ self.qemu_rootfs(target).is_some() || target.contains("android") ||
924
+ env::var_os("TEST_DEVICE_ADDR").is_some()
925
}
926
927
/// Returns the root of the "rootfs" image that this target will be using,
0 commit comments