Allow remote testing remotely when TEST_DEVICE_ADDR is set
This commit is contained in:
parent
88cf76a64e
commit
bbdbb65467
1 changed files with 2 additions and 1 deletions
|
|
@ -920,7 +920,8 @@ impl Build {
|
|||
/// Returns whether the target will be tested using the `remote-test-client`
|
||||
/// and `remote-test-server` binaries.
|
||||
fn remote_tested(&self, target: &str) -> bool {
|
||||
self.qemu_rootfs(target).is_some() || target.contains("android")
|
||||
self.qemu_rootfs(target).is_some() || target.contains("android") ||
|
||||
env::var_os("TEST_DEVICE_ADDR").is_some()
|
||||
}
|
||||
|
||||
/// Returns the root of the "rootfs" image that this target will be using,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue