[lldb] Fix duplicate test class name causing lldb-dotest conflict (#169861)

Duplicate test class name `TestFrameVarDILPointerArithmetic` prevents
lldb-dotest from running any tests.
The conflict exists between:
- lldb/test/API/commands/frame/vardil/expr/PointerArithmetic/
- lldb/test/API/commands/frame/vardil/basics/PointerArithmetic/

Rename the expr variant to `TestFrameVarDILExprPointerArithmetic`.
This commit is contained in:
Ebuka Ezike
2025-11-28 12:09:23 +00:00
committed by GitHub
parent e16cc8ed46
commit 14fb59a2c2

View File

@@ -8,7 +8,7 @@ from lldbsuite.test.decorators import *
from lldbsuite.test import lldbutil
class TestFrameVarDILPointerArithmetic(TestBase):
class TestFrameVarDILExprPointerArithmetic(TestBase):
NO_DEBUG_INFO_TESTCASE = True
def test_pointer_arithmetic(self):