summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Yu <dyu@google.com>2024-02-16 23:38:13 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-02-16 23:38:13 +0000
commitf2710dd6f3a1f28c4c0d80038996e083b76f9d0a (patch)
tree69880cf06ab1452f508c73db765f7d2d63df0850
parent85f6943317f334dd84201f468c8d06df275fc640 (diff)
parentb60a08db1e9adf0715784144cec4f208574a7d44 (diff)
downloadadt-infra-f2710dd6f3a1f28c4c0d80038996e083b76f9d0a.tar.gz
Merge "Change final logging message to track error codes." into emu-master-dev
-rwxr-xr-xemu_test/dotest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emu_test/dotest.py b/emu_test/dotest.py
index ef237817..022b3a11 100755
--- a/emu_test/dotest.py
+++ b/emu_test/dotest.py
@@ -491,5 +491,5 @@ if __name__ == '__main__':
logging.info("adb server killed")
except CalledProcessError:
logging.exception("Error shutting down adb")
- logging.info("Test complete")
+ logging.info("Test complete with exit code {int(not emuResult.wasSuccessful())}")
sys.exit(not emuResult.wasSuccessful())