Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion xctestrunner/test_runner/ios_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ def _SimulatorTest(args):
"""The function of sub command `simulator_test`."""
try:
return _RunSimulatorTest(args)
except ios_errors.SimError:
except ios_errors.SimError as e:
logging.error('Failed to run simulator test: %s', e)
return runner_exit_codes.EXITCODE.SIM_ERROR

test_parser = subparsers.add_parser(
Expand Down