https://github.com/Michael137 created 
https://github.com/llvm/llvm-project/pull/154912

This patch works towards consolidating all Clang debug-info into the 
`clang/test/DebugInfo` directory
(https://discourse.llvm.org/t/clang-test-location-of-clang-debug-info-tests/87958).

Here we move only the `clang/test/CodeGenObjCXX` tests.

The list of files i came up with is:
1. searched for anything with `*debug-info*` in the filename
2. searched for occurrences of `debug-info-kind` in the tests

>From a71accb8f419a45131a1f706c785977baf062cb9 Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuc...@gmail.com>
Date: Fri, 22 Aug 2025 09:52:46 +0100
Subject: [PATCH] [clang][DebugInfo][test] Move debug-info tests from
 CodeGenObjCXX to DebugInfo directory

This patch works towards consolidating all Clang debug-info into the
`clang/test/DebugInfo` directory
(https://discourse.llvm.org/t/clang-test-location-of-clang-debug-info-tests/87958).

Here we move only the `clang/test/CodeGenObjCXX` tests.

The list of files i came up with is:
1. searched for anything with `*debug-info*` in the filename
2. searched for occurrences of `debug-info-kind` in the tests
---
 .../ObjCXX/block-capture-this.mm}                                 | 0
 .../debug-info-cyclic.mm => DebugInfo/ObjCXX/cyclic.mm}           | 0
 clang/test/{CodeGenObjCXX => DebugInfo/ObjCXX}/debug-info.mm      | 0
 .../debug-info-line.mm => DebugInfo/ObjCXX/line.mm}               | 0
 .../test/{CodeGenObjCXX => DebugInfo/ObjCXX}/nested-ehlocation.mm | 0
 .../ObjCXX}/pr14474-gline-tables-only.mm                          | 0
 6 files changed, 0 insertions(+), 0 deletions(-)
 rename clang/test/{CodeGenObjCXX/debug-info-block-capture-this.mm => 
DebugInfo/ObjCXX/block-capture-this.mm} (100%)
 rename clang/test/{CodeGenObjCXX/debug-info-cyclic.mm => 
DebugInfo/ObjCXX/cyclic.mm} (100%)
 rename clang/test/{CodeGenObjCXX => DebugInfo/ObjCXX}/debug-info.mm (100%)
 rename clang/test/{CodeGenObjCXX/debug-info-line.mm => 
DebugInfo/ObjCXX/line.mm} (100%)
 rename clang/test/{CodeGenObjCXX => DebugInfo/ObjCXX}/nested-ehlocation.mm 
(100%)
 rename clang/test/{CodeGenObjCXX => 
DebugInfo/ObjCXX}/pr14474-gline-tables-only.mm (100%)

diff --git a/clang/test/CodeGenObjCXX/debug-info-block-capture-this.mm 
b/clang/test/DebugInfo/ObjCXX/block-capture-this.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/debug-info-block-capture-this.mm
rename to clang/test/DebugInfo/ObjCXX/block-capture-this.mm
diff --git a/clang/test/CodeGenObjCXX/debug-info-cyclic.mm 
b/clang/test/DebugInfo/ObjCXX/cyclic.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/debug-info-cyclic.mm
rename to clang/test/DebugInfo/ObjCXX/cyclic.mm
diff --git a/clang/test/CodeGenObjCXX/debug-info.mm 
b/clang/test/DebugInfo/ObjCXX/debug-info.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/debug-info.mm
rename to clang/test/DebugInfo/ObjCXX/debug-info.mm
diff --git a/clang/test/CodeGenObjCXX/debug-info-line.mm 
b/clang/test/DebugInfo/ObjCXX/line.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/debug-info-line.mm
rename to clang/test/DebugInfo/ObjCXX/line.mm
diff --git a/clang/test/CodeGenObjCXX/nested-ehlocation.mm 
b/clang/test/DebugInfo/ObjCXX/nested-ehlocation.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/nested-ehlocation.mm
rename to clang/test/DebugInfo/ObjCXX/nested-ehlocation.mm
diff --git a/clang/test/CodeGenObjCXX/pr14474-gline-tables-only.mm 
b/clang/test/DebugInfo/ObjCXX/pr14474-gline-tables-only.mm
similarity index 100%
rename from clang/test/CodeGenObjCXX/pr14474-gline-tables-only.mm
rename to clang/test/DebugInfo/ObjCXX/pr14474-gline-tables-only.mm

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to