aboutsummaryrefslogtreecommitdiff
path: root/lldb/test
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2022-07-15 13:35:48 +0000
committerDavid Spickett <david.spickett@linaro.org>2022-07-15 13:35:48 +0000
commitcd2e36eadd47c2b5dc8e01d6e4856ac7bebcfc38 (patch)
tree1dc012053fe549bc1d6c1ce97883085f8a0c6425 /lldb/test
parenteb43e43bb5b2d19e14309e120cb8e66136ae7c82 (diff)
downloadllvm-cd2e36eadd47c2b5dc8e01d6e4856ac7bebcfc38.zip
llvm-cd2e36eadd47c2b5dc8e01d6e4856ac7bebcfc38.tar.gz
llvm-cd2e36eadd47c2b5dc8e01d6e4856ac7bebcfc38.tar.bz2
[lldb][AArch64] Enable int128 test
Other 128 bit tests run on AArch64 fine, it's Arm (as in 32 bit Arm) that needs to be skipped.
Diffstat (limited to 'lldb/test')
-rw-r--r--lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py b/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py
index 10b626b..4825927 100644
--- a/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py
+++ b/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py
@@ -22,7 +22,7 @@ class TestCase(TestBase):
@no_debug_info_test
@skipIfWindows
# uint128_t not available on arm.
- @skipIf(archs=['arm', 'aarch64'])
+ @skipIf(archs=['arm'])
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.cpp"))