diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-09-27 22:12:54 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-09-27 22:12:54 +0000 |
commit | 11ff56c958cc6d073df0abb94b3ad1a890440420 (patch) | |
tree | b5f06c8b98b24939036851df41608a1a545295e9 /lldb/packages/Python/lldbsuite/test/functionalities/unwind | |
parent | 74d1e8683ceb27ffaed0877d783ba2b18380fb67 (diff) | |
download | bcm5719-llvm-11ff56c958cc6d073df0abb94b3ad1a890440420.tar.gz bcm5719-llvm-11ff56c958cc6d073df0abb94b3ad1a890440420.zip |
Add support for running the lldb testsuite against an apple watch
running watchos. These tests cannot run on normal customer devices,
but I hope to some day have a public facing bot running against a
device.
llvm-svn: 314355
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/unwind')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py b/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py index 0997c3a0b23..598efbc5e03 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py @@ -19,7 +19,7 @@ class SigtrampUnwind(TestBase): # On different platforms the "_sigtramp" and "__kill" frames are likely to be different. # This test could probably be adapted to run on linux/*bsd easily enough. @skipUnlessDarwin - @expectedFailureAll(oslist=["ios", "tvos", "bridgeos"], bugnumber="<rdar://problem/34006863>") # lldb skips 1 frame on arm64 above _sigtramp + @expectedFailureAll(oslist=["ios", "watchos", "tvos", "bridgeos"], bugnumber="<rdar://problem/34006863>") # lldb skips 1 frame on arm64 above _sigtramp def test(self): """Test that we can backtrace correctly with _sigtramp on the stack""" self.build() |