diff options
author | Vedant Kumar <vsk@apple.com> | 2019-09-30 17:11:46 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2019-09-30 17:11:46 +0000 |
commit | b5a1cf9bf88db4ff531f27746f84f7545d0a8583 (patch) | |
tree | a65f5822a711d18073c5f13aea37f3d9056c6a66 /lldb/packages/Python/lldbsuite/test | |
parent | 01b84e175c500dd85c522920de992c0b2c5b1060 (diff) | |
download | bcm5719-llvm-b5a1cf9bf88db4ff531f27746f84f7545d0a8583.tar.gz bcm5719-llvm-b5a1cf9bf88db4ff531f27746f84f7545d0a8583.zip |
[test] Make TestBasicEntryValuesX86_64 run on Linux as well as Darwin
I think a reasonable plan here is to add support for OSes following the
SysV ABI one by one, watching the bots as we go.
llvm-svn: 373233
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py index 5b5099bff5d..ad50f12c6b8 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py @@ -1,8 +1,12 @@ from lldbsuite.test import lldbinline from lldbsuite.test import decorators +from lldbsuite.test import lldbplatformutil + +supported_platforms = ["linux"] +supported_platforms.extend(lldbplatformutil.getDarwinOSTriples()) lldbinline.MakeInlineTest(__file__, globals(), - [decorators.skipUnlessDarwin, + [decorators.skipUnlessPlatform(supported_platforms), decorators.skipUnlessArch('x86_64'), decorators.skipUnlessHasCallSiteInfo, decorators.skipIf(dwarf_version=['<', '4'])]) |