summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-03-15 19:22:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-03-15 19:22:12 +0000
commit61e4c87a587d1bece16dec34ccfa7d25c7f82ec0 (patch)
treecb2d31c2d52c11eb61ad3ab3784248fb22011d79
parent975eb986323dd348aa2a76d6f7870a1154199d10 (diff)
parent272457ba8daf8d6076167ba53dfe754469ec2359 (diff)
downloadrs-61e4c87a587d1bece16dec34ccfa7d25c7f82ec0.tar.gz
Merge "Use `ro.boot.qemu` to check if the device is an emulator"
-rw-r--r--tests/lldb/tests/harness/util_android.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lldb/tests/harness/util_android.py b/tests/lldb/tests/harness/util_android.py
index 16596f59..a0cf700b 100644
--- a/tests/lldb/tests/harness/util_android.py
+++ b/tests/lldb/tests/harness/util_android.py
@@ -635,7 +635,7 @@ class UtilAndroid(object):
# if the remote is an emulator do not even try to reboot
# otherwise check whether a reboot is advised
- if (self._get_prop('ro.kernel.qemu') != '1' and output and
+ if (self._get_prop('ro.boot.qemu') != '1' and output and
'Now reboot your device for settings to take effect' in output):
self._reboot_device()