diff options
author | Jason Molenda <jmolenda@apple.com> | 2019-01-17 22:26:25 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2019-01-17 22:26:25 +0000 |
commit | 03e26de4d26a94f8e7e2bf0d7371712faf299a05 (patch) | |
tree | 1ddbd42469e629bc6f64084eaa9f9d3b7fd52182 /lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py | |
parent | 43977e8aa9ab18b80088c4d3732c08b6928b3f96 (diff) | |
download | bcm5719-llvm-03e26de4d26a94f8e7e2bf0d7371712faf299a05.tar.gz bcm5719-llvm-03e26de4d26a94f8e7e2bf0d7371712faf299a05.zip |
Don't run TestBreakpointThumbCodesection.py on darwin systems;
we don't use a thumb code section.
Don't run Test128BitsInteger.py on armv7k; it's not a supported
type on that target.
llvm-svn: 351490
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py b/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py index c8308c16011..433c275fb58 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py @@ -1,4 +1,6 @@ from lldbsuite.test import lldbinline from lldbsuite.test import decorators -lldbinline.MakeInlineTest(__file__, globals()) +lldbinline.MakeInlineTest(__file__, globals(), + decorators.skipIf(archs=["armv7k"])) + |