mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 11:02:04 +08:00
[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:
@@ -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):
|
||||
Reference in New Issue
Block a user