aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-06-29 21:21:35 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-07-02 19:00:48 +0200
commitbee3fd09c210a192e52f9950c630c49c655de802 (patch)
tree819b01334c86bff4454266e64b49453cf6a0b625 /python/servo/post_build_commands.py
parent8293b295beb8c76113f525f41ba16e204a7cb22b (diff)
downloadservo-bee3fd09c210a192e52f9950c630c49c655de802.tar.gz
servo-bee3fd09c210a192e52f9950c630c49c655de802.zip
mach android-emulator: avoid mach error messages for Python exceptions
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index b5dd211a144..30c59f417f5 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -181,7 +181,7 @@ class PostBuildCommands(CommandBase):
return 1
env = self.build_env()
emulator = path.join(env["ANDROID_SDK"], "emulator", "emulator")
- check_call([emulator] + args)
+ return subprocess.call([emulator] + args)
@Command('rr-record',
description='Run Servo whilst recording execution with rr',