https://github.com/da-viper created https://github.com/llvm/llvm-project/pull/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`. >From 968f2bc895484e1bf4cf21a8690bbcac0b670f59 Mon Sep 17 00:00:00 2001 From: Ebuka Ezike <[email protected]> Date: Thu, 27 Nov 2025 23:25:00 +0000 Subject: [PATCH] [lldb] Fix duplicate test class name causing lldb-dotest conflict 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`. --- ...terArithmetic.py => TestFrameVarDILExprPointerArithmetic.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/{TestFrameVarDILPointerArithmetic.py => TestFrameVarDILExprPointerArithmetic.py} (93%) diff --git a/lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILPointerArithmetic.py b/lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILExprPointerArithmetic.py similarity index 93% rename from lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILPointerArithmetic.py rename to lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILExprPointerArithmetic.py index 88429b370710e..448cd5b1ec7e0 100644 --- a/lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILPointerArithmetic.py +++ b/lldb/test/API/commands/frame/var-dil/expr/PointerArithmetic/TestFrameVarDILExprPointerArithmetic.py @@ -8,7 +8,7 @@ from lldbsuite.test import lldbutil -class TestFrameVarDILPointerArithmetic(TestBase): +class TestFrameVarDILExprPointerArithmetic(TestBase): NO_DEBUG_INFO_TESTCASE = True def test_pointer_arithmetic(self): _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
