Author: Raphael Isemann Date: 2026-07-10T15:32:18+01:00 New Revision: 73976bc0e88a6fb5e8213726074f2b0474899499
URL: https://github.com/llvm/llvm-project/commit/73976bc0e88a6fb5e8213726074f2b0474899499 DIFF: https://github.com/llvm/llvm-project/commit/73976bc0e88a6fb5e8213726074f2b0474899499.diff LOG: [lldb][test] Get rid of radar references in test names (#208673) No one outside Apple can access the associated radars and understand what these tests are about. These tests have other problems, but this makes them at least possible to comprehend for everyone. Added: lldb/test/API/commands/command/script/import/import-error/Makefile lldb/test/API/commands/command/script/import/import-error/TestImportError.py lldb/test/API/commands/command/script/import/import-error/fail_importerror.py lldb/test/API/commands/command/script/import/import-error/fail_valueerror.py lldb/test/API/commands/expression/int128/Test128BitsInteger.py lldb/test/API/commands/expression/int128/main.c lldb/test/API/commands/expression/urem-sign/TestScalarURem.py lldb/test/API/commands/expression/urem-sign/main.c lldb/test/API/functionalities/data-formatter/summary-string-onfail/TestSummaryStringOnFail.py lldb/test/API/lang/objc/coalesced-cf-types/Makefile lldb/test/API/lang/objc/coalesced-cf-types/TestCoalescedCFTypes.py lldb/test/API/lang/objc/coalesced-cf-types/main.m lldb/test/API/lang/objc/dynamic-type-children/Makefile lldb/test/API/lang/objc/dynamic-type-children/TestDynamicTypeChildren.py lldb/test/API/lang/objc/dynamic-type-children/main.m Modified: Removed: lldb/test/API/commands/command/script/import/rdar-12586188/Makefile lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py lldb/test/API/commands/expression/rdar42038760/main.c lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py lldb/test/API/commands/expression/rdar44436068/main.c lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py lldb/test/API/lang/objc/rdar-10967107/Makefile lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py lldb/test/API/lang/objc/rdar-10967107/main.m lldb/test/API/lang/objc/rdar-12408181/Makefile lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py lldb/test/API/lang/objc/rdar-12408181/main.m ################################################################################ diff --git a/lldb/test/API/commands/command/script/import/rdar-12586188/Makefile b/lldb/test/API/commands/command/script/import/import-error/Makefile similarity index 100% rename from lldb/test/API/commands/command/script/import/rdar-12586188/Makefile rename to lldb/test/API/commands/command/script/import/import-error/Makefile diff --git a/lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py b/lldb/test/API/commands/command/script/import/import-error/TestImportError.py similarity index 78% rename from lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py rename to lldb/test/API/commands/command/script/import/import-error/TestImportError.py index 61c10dc172606..e60f734db3d0d 100644 --- a/lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py +++ b/lldb/test/API/commands/command/script/import/import-error/TestImportError.py @@ -7,10 +7,10 @@ from lldbsuite.test import lldbutil -class Rdar12586188TestCase(TestBase): +class ImportErrorTestCase(TestBase): @add_test_categories(["pyapi"]) @no_debug_info_test - def test_rdar12586188_command(self): + def test_import_error_command(self): """Check that we handle an ImportError in a special way when command script importing files.""" self.run_test() @@ -18,12 +18,12 @@ def run_test(self): """Check that we handle an ImportError in a special way when command script importing files.""" self.expect( - "command script import ./fail12586188.py --allow-reload", + "command script import ./fail_importerror.py --allow-reload", error=True, substrs=['raise ImportError("I do not want to be imported")'], ) self.expect( - "command script import ./fail212586188.py --allow-reload", + "command script import ./fail_valueerror.py --allow-reload", error=True, substrs=['raise ValueError("I do not want to be imported")'], ) diff --git a/lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py b/lldb/test/API/commands/command/script/import/import-error/fail_importerror.py similarity index 100% rename from lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py rename to lldb/test/API/commands/command/script/import/import-error/fail_importerror.py diff --git a/lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py b/lldb/test/API/commands/command/script/import/import-error/fail_valueerror.py similarity index 100% rename from lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py rename to lldb/test/API/commands/command/script/import/import-error/fail_valueerror.py diff --git a/lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py b/lldb/test/API/commands/expression/int128/Test128BitsInteger.py similarity index 100% rename from lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py rename to lldb/test/API/commands/expression/int128/Test128BitsInteger.py diff --git a/lldb/test/API/commands/expression/rdar44436068/main.c b/lldb/test/API/commands/expression/int128/main.c similarity index 100% rename from lldb/test/API/commands/expression/rdar44436068/main.c rename to lldb/test/API/commands/expression/int128/main.c diff --git a/lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py b/lldb/test/API/commands/expression/urem-sign/TestScalarURem.py similarity index 100% rename from lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py rename to lldb/test/API/commands/expression/urem-sign/TestScalarURem.py diff --git a/lldb/test/API/commands/expression/rdar42038760/main.c b/lldb/test/API/commands/expression/urem-sign/main.c similarity index 100% rename from lldb/test/API/commands/expression/rdar42038760/main.c rename to lldb/test/API/commands/expression/urem-sign/main.c diff --git a/lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py b/lldb/test/API/functionalities/data-formatter/summary-string-onfail/TestSummaryStringOnFail.py similarity index 97% rename from lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py rename to lldb/test/API/functionalities/data-formatter/summary-string-onfail/TestSummaryStringOnFail.py index d5db44a6c1455..5096283908622 100644 --- a/lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py +++ b/lldb/test/API/functionalities/data-formatter/summary-string-onfail/TestSummaryStringOnFail.py @@ -8,9 +8,7 @@ import lldbsuite.test.lldbutil as lldbutil -class Radar9974002DataFormatterTestCase(TestBase): - # test for rdar://problem/9974002 () - +class SummaryStringOnFailDataFormatterTestCase(TestBase): def setUp(self): # Call super's setUp(). TestBase.setUp(self) diff --git a/lldb/test/API/lang/objc/rdar-10967107/Makefile b/lldb/test/API/lang/objc/coalesced-cf-types/Makefile similarity index 100% rename from lldb/test/API/lang/objc/rdar-10967107/Makefile rename to lldb/test/API/lang/objc/coalesced-cf-types/Makefile diff --git a/lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py b/lldb/test/API/lang/objc/coalesced-cf-types/TestCoalescedCFTypes.py similarity index 97% rename from lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py rename to lldb/test/API/lang/objc/coalesced-cf-types/TestCoalescedCFTypes.py index 3948940d4ddbd..56b80a3c55677 100644 --- a/lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py +++ b/lldb/test/API/lang/objc/coalesced-cf-types/TestCoalescedCFTypes.py @@ -9,7 +9,7 @@ from lldbsuite.test import lldbutil -class Rdar10967107TestCase(TestBase): +class CoalescedCFTypesTestCase(TestBase): SHARED_BUILD_TESTCASE = False def setUp(self): diff --git a/lldb/test/API/lang/objc/rdar-10967107/main.m b/lldb/test/API/lang/objc/coalesced-cf-types/main.m similarity index 100% rename from lldb/test/API/lang/objc/rdar-10967107/main.m rename to lldb/test/API/lang/objc/coalesced-cf-types/main.m diff --git a/lldb/test/API/lang/objc/rdar-12408181/Makefile b/lldb/test/API/lang/objc/dynamic-type-children/Makefile similarity index 100% rename from lldb/test/API/lang/objc/rdar-12408181/Makefile rename to lldb/test/API/lang/objc/dynamic-type-children/Makefile diff --git a/lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py b/lldb/test/API/lang/objc/dynamic-type-children/TestDynamicTypeChildren.py similarity index 98% rename from lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py rename to lldb/test/API/lang/objc/dynamic-type-children/TestDynamicTypeChildren.py index 63e0555fb9b68..23ffeaeb86cb2 100644 --- a/lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py +++ b/lldb/test/API/lang/objc/dynamic-type-children/TestDynamicTypeChildren.py @@ -14,7 +14,7 @@ # test if WindowServer isn't available. # Note: Simply applying the @skipIf decorator here confuses the test harness # and gives a spurious failure. -class Rdar12408181TestCase(TestBase): +class DynamicTypeChildrenTestCase(TestBase): SHARED_BUILD_TESTCASE = False def setUp(self): diff --git a/lldb/test/API/lang/objc/rdar-12408181/main.m b/lldb/test/API/lang/objc/dynamic-type-children/main.m similarity index 100% rename from lldb/test/API/lang/objc/rdar-12408181/main.m rename to lldb/test/API/lang/objc/dynamic-type-children/main.m _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
