Skip to content

Commit 14fb59a

Browse files
authored
[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`.
1 parent e16cc8e commit 14fb59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from lldbsuite.test import lldbutil
99

1010

11-
class TestFrameVarDILPointerArithmetic(TestBase):
11+
class TestFrameVarDILExprPointerArithmetic(TestBase):
1212
NO_DEBUG_INFO_TESTCASE = True
1313

1414
def test_pointer_arithmetic(self):

0 commit comments

Comments
 (0)