diff options
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index 2816cb7e39a..10f52325875 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -364,7 +364,7 @@ def apple_simulator_test(platform): else: return "%s simulator is not supported on this system." % platform except subprocess.CalledProcessError: - return "%s is not supported on this system (xcodebuild failed)." % feature + return "Simulators are unsupported on this system (xcodebuild failed)" return skipTestIfFn(should_skip_simulator_test) |