[Lldb-commits] [lldb] [LLDB] Update DIL assignment test to not break on arm-32. (PR #203007)

via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 10 08:06:15 PDT 2026


https://github.com/cmtice created https://github.com/llvm/llvm-project/pull/203007

Test included a case that was not valid on arm-32. This removes that case.

>From 127ba5bf0526acca3c63b50d333f672a05543152 Mon Sep 17 00:00:00 2001
From: Caroline Tice <cmtice at google.com>
Date: Wed, 10 Jun 2026 08:03:34 -0700
Subject: [PATCH] [LLDB] Update DIL assignment test to not break on arm-32.

Test included a case that was not valid on arm-32. This removes that
case.
---
 .../frame/var-dil/expr/Assignment/TestFrameVarDILAssign.py       | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lldb/test/API/commands/frame/var-dil/expr/Assignment/TestFrameVarDILAssign.py b/lldb/test/API/commands/frame/var-dil/expr/Assignment/TestFrameVarDILAssign.py
index f554ceb46acb8..5b0ba3e8e8a72 100644
--- a/lldb/test/API/commands/frame/var-dil/expr/Assignment/TestFrameVarDILAssign.py
+++ b/lldb/test/API/commands/frame/var-dil/expr/Assignment/TestFrameVarDILAssign.py
@@ -84,7 +84,6 @@ def test_assignment(self):
         if Is32Bit:
             self.expect("frame variable 'p = (int*)12'", substrs=["p = 0x0000000c"])
             self.expect_var_path("p", value="0x0000000c")
-            self.expect("frame variable 'p = p - s'", substrs=["p = 0x0000000b"])
             self.expect("frame variable 'p = (int *)0'", substrs=["p = 0x00000000"])
         else:
             self.expect(



More information about the lldb-commits mailing list