[Lldb-commits] [PATCH] D129783: [lldb] Skip tests using int128 on ARM

Andy Yankovsky via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 14 08:39:01 PDT 2022


werat created this revision.
werat added a reviewer: Michael137.
Herald added a subscriber: kristof.beyls.
Herald added a project: All.
werat requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Follow-up fix for https://reviews.llvm.org/D81471.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D129783

Files:
  lldb/test/API/lang/cpp/const_static_integral_member_int128/TestConstStaticIntegralMemberInt128.py


Index: lldb/test/API/lang/cpp/const_static_integral_member_int128/TestConstStaticIntegralMemberInt128.py
===================================================================
--- lldb/test/API/lang/cpp/const_static_integral_member_int128/TestConstStaticIntegralMemberInt128.py
+++ lldb/test/API/lang/cpp/const_static_integral_member_int128/TestConstStaticIntegralMemberInt128.py
@@ -12,6 +12,8 @@
 
     mydir = TestBase.compute_mydir(__file__)
 
+    # uint128_t not available on arm.
+    @skipIf(archs=["arm", "aarch64"])
     def test_int128(self):
         self.build()
         lldbutil.run_to_source_breakpoint(self, "// break here",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129783.444683.patch
Type: text/x-patch
Size: 639 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220714/595d9500/attachment.bin>


More information about the lldb-commits mailing list