[libcxx-commits] [libcxx] [libc++] Move a few tests into more correct places (PR #147557)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jul 9 04:27:13 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Nikolas Klauser (philnik777)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/147557.diff


11 Files Affected:

- (renamed) libcxx/test/extensions/all/cstddef.compile.pass.cpp (+1) 
- (renamed) libcxx/test/extensions/clang/clang_modules_include.gen.py () 
- (added) libcxx/test/extensions/clang/lit.local.cfg (+4) 
- (renamed) libcxx/test/extensions/libcxx/include_as_c.sh.cpp () 
- (renamed) libcxx/test/extensions/libcxx/libcpp_version.gen.py (+1-1) 
- (added) libcxx/test/extensions/libcxx/lit.local.cfg (+3) 
- (renamed) libcxx/test/extensions/libcxx/no_assert_include.gen.py () 
- (removed) libcxx/test/libcxx/lit.local.cfg (-5) 
- (renamed) libcxx/test/std/double_include.gen.py (+3) 
- (renamed) libcxx/test/std/header_inclusions.gen.py (+3) 
- (modified) libcxx/utils/libcxx/test/format.py (+4-1) 


``````````diff
diff --git a/libcxx/test/libcxx/language.support/support.types/cstddef.compile.pass.cpp b/libcxx/test/extensions/all/cstddef.compile.pass.cpp
similarity index 99%
rename from libcxx/test/libcxx/language.support/support.types/cstddef.compile.pass.cpp
rename to libcxx/test/extensions/all/cstddef.compile.pass.cpp
index 514353a103029..c6f670d7bfc06 100644
--- a/libcxx/test/libcxx/language.support/support.types/cstddef.compile.pass.cpp
+++ b/libcxx/test/extensions/all/cstddef.compile.pass.cpp
@@ -11,6 +11,7 @@
 // appear to provide that behavior too.
 
 #include <cstddef>
+
 #include "test_macros.h"
 
 using PtrdiffT = ::ptrdiff_t;
diff --git a/libcxx/test/libcxx/clang_modules_include.gen.py b/libcxx/test/extensions/clang/clang_modules_include.gen.py
similarity index 100%
rename from libcxx/test/libcxx/clang_modules_include.gen.py
rename to libcxx/test/extensions/clang/clang_modules_include.gen.py
diff --git a/libcxx/test/extensions/clang/lit.local.cfg b/libcxx/test/extensions/clang/lit.local.cfg
new file mode 100644
index 0000000000000..38e0c9408738e
--- /dev/null
+++ b/libcxx/test/extensions/clang/lit.local.cfg
@@ -0,0 +1,4 @@
+
+# Only libc++ supports clang-specific extensions
+if ("stdlib=libc++" not in config.available_features):
+    config.unsupported = True
diff --git a/libcxx/test/libcxx/include_as_c.sh.cpp b/libcxx/test/extensions/libcxx/include_as_c.sh.cpp
similarity index 100%
rename from libcxx/test/libcxx/include_as_c.sh.cpp
rename to libcxx/test/extensions/libcxx/include_as_c.sh.cpp
diff --git a/libcxx/test/libcxx/libcpp_version.gen.py b/libcxx/test/extensions/libcxx/libcpp_version.gen.py
similarity index 93%
rename from libcxx/test/libcxx/libcpp_version.gen.py
rename to libcxx/test/extensions/libcxx/libcpp_version.gen.py
index b30623fe2c388..ebeab777c934f 100644
--- a/libcxx/test/libcxx/libcpp_version.gen.py
+++ b/libcxx/test/extensions/libcxx/libcpp_version.gen.py
@@ -6,7 +6,7 @@
 #
 # ===----------------------------------------------------------------------===##
 
-# Test that all headers define the _LIBCPP_VERSION macro.
+# Test that all public headers define the _LIBCPP_VERSION macro.
 
 # RUN: %{python} %s %{libcxx-dir}/utils
 
diff --git a/libcxx/test/extensions/libcxx/lit.local.cfg b/libcxx/test/extensions/libcxx/lit.local.cfg
new file mode 100644
index 0000000000000..f46fda197c01b
--- /dev/null
+++ b/libcxx/test/extensions/libcxx/lit.local.cfg
@@ -0,0 +1,3 @@
+
+if ("stdlib=libc++" not in config.available_features):
+    config.unsupported = True
diff --git a/libcxx/test/libcxx/no_assert_include.gen.py b/libcxx/test/extensions/libcxx/no_assert_include.gen.py
similarity index 100%
rename from libcxx/test/libcxx/no_assert_include.gen.py
rename to libcxx/test/extensions/libcxx/no_assert_include.gen.py
diff --git a/libcxx/test/libcxx/lit.local.cfg b/libcxx/test/libcxx/lit.local.cfg
deleted file mode 100644
index 4467d8070cc70..0000000000000
--- a/libcxx/test/libcxx/lit.local.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-# The tests in this directory need to run Python
-import shlex
-import sys
-
-config.substitutions.append(("%{python}", shlex.quote(sys.executable)))
diff --git a/libcxx/test/libcxx/double_include.gen.py b/libcxx/test/std/double_include.gen.py
similarity index 93%
rename from libcxx/test/libcxx/double_include.gen.py
rename to libcxx/test/std/double_include.gen.py
index f58e72f94a353..91b7a3389e295 100644
--- a/libcxx/test/libcxx/double_include.gen.py
+++ b/libcxx/test/std/double_include.gen.py
@@ -8,6 +8,9 @@
 
 # Test that we can include each header in two TU's and link them together.
 
+# We're using compiler-specific flags in this test
+# REQUIRES: (gcc || clang)
+
 # RUN: %{python} %s %{libcxx-dir}/utils
 
 # Block Lit from interpreting a RUN/XFAIL/etc inside the generation script.
diff --git a/libcxx/test/libcxx/header_inclusions.gen.py b/libcxx/test/std/header_inclusions.gen.py
similarity index 91%
rename from libcxx/test/libcxx/header_inclusions.gen.py
rename to libcxx/test/std/header_inclusions.gen.py
index e00cf180d17ad..3f29aa2ca34b5 100644
--- a/libcxx/test/libcxx/header_inclusions.gen.py
+++ b/libcxx/test/std/header_inclusions.gen.py
@@ -9,6 +9,9 @@
 # Test that all headers include all the other headers they're supposed to, as
 # prescribed by the Standard.
 
+# TODO: This is currently a libc++-specific way of testing the includes, but is a requirement for all implementation
+# REQUIRES: stdlib=libc++
+
 # RUN: %{python} %s %{libcxx-dir}/utils
 # END.
 
diff --git a/libcxx/utils/libcxx/test/format.py b/libcxx/utils/libcxx/test/format.py
index 59d0fffd37819..c98f799c70989 100644
--- a/libcxx/utils/libcxx/test/format.py
+++ b/libcxx/utils/libcxx/test/format.py
@@ -11,7 +11,8 @@
 import lit.formats
 import os
 import re
-
+import shlex
+import sys
 
 def _getTempPaths(test):
     """
@@ -97,6 +98,8 @@ def parseScript(test, preamble):
     )
     substitutions.append(("%{run}", "%{exec} %t.exe"))
 
+    substitutions.append(("%{python}", shlex.quote(sys.executable)))
+
     # Parse the test file, including custom directives
     additionalCompileFlags = []
     fileDependencies = []

``````````

</details>


https://github.com/llvm/llvm-project/pull/147557


More information about the libcxx-commits mailing list