Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcxx/docs/ReleaseNotes.rst9
-rw-r--r--libcxx/test/configs/legacy.cfg.in3
-rwxr-xr-xlibcxx/utils/ci/run-buildbot4
-rw-r--r--libcxxabi/test/lit.site.cfg.in3
-rw-r--r--libunwind/test/lit.site.cfg.in3
5 files changed, 17 insertions, 5 deletions
diff --git a/libcxx/docs/ReleaseNotes.rst b/libcxx/docs/ReleaseNotes.rst
index 514de5de3213..b2bd0718001e 100644
--- a/libcxx/docs/ReleaseNotes.rst
+++ b/libcxx/docs/ReleaseNotes.rst
@@ -148,7 +148,8 @@ Build System Changes
its own headers.
- The legacy testing configuration is now deprecated and will be removed in the next release. For
- most users, this should not have any impact. However, if you are testing libc++ in a configuration
- or on a platform that used to be supported by the legacy testing configuration and isn't supported
- by one of the configurations in ``libcxx/test/configs``, please reach out to the libc++ developers
- to get your configuration supported officially.
+ most users, this should not have any impact. However, if you are testing libc++, libc++abi or
+ libunwind in a configuration or on a platform that used to be supported by the legacy testing
+ configuration and isn't supported by one of the configurations in ``libcxx/test/configs``,
+ ``libcxxabi/test/configs`` or ``libunwind/test/configs``, please move to one of those
+ configurations or define your own.
diff --git a/libcxx/test/configs/legacy.cfg.in b/libcxx/test/configs/legacy.cfg.in
index 8bb5bc76aa5e..a7ac6f804240 100644
--- a/libcxx/test/configs/legacy.cfg.in
+++ b/libcxx/test/configs/legacy.cfg.in
@@ -62,3 +62,6 @@ import libcxx.test.config
configuration = libcxx.test.config.Configuration(lit_config, config)
configuration.configure()
configuration.print_config_info()
+
+lit_config.warning("This is a legacy testing configuration which will be removed in LLVM 16. "
+ "Please use one of the configurations in libcxx/test/configs or define your own.")
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 23708e680893..2b9f129fd258 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -462,7 +462,9 @@ bootstrapping-build)
;;
legacy-test-config)
clean
- generate-cmake -DLIBCXX_TEST_CONFIG="legacy.cfg.in"
+ generate-cmake -DLIBCXX_TEST_CONFIG="legacy.cfg.in" \
+ -DLIBCXXABI_TEST_CONFIG="${MONOREPO_ROOT}/libcxxabi/test/lit.site.cfg.in" \
+ -DLIBUNWIND_TEST_CONFIG="${MONOREPO_ROOT}/libunwind/test/lit.site.cfg.in"
check-runtimes
;;
legacy-project-build)
diff --git a/libcxxabi/test/lit.site.cfg.in b/libcxxabi/test/lit.site.cfg.in
index ae387f55e035..7a786a3a7691 100644
--- a/libcxxabi/test/lit.site.cfg.in
+++ b/libcxxabi/test/lit.site.cfg.in
@@ -60,3 +60,6 @@ import libcxxabi.test.config
configuration = libcxxabi.test.config.Configuration(lit_config, config)
configuration.configure()
configuration.print_config_info()
+
+lit_config.warning("This is a legacy testing configuration which will be removed in LLVM 16. "
+ "Please use one of the configurations in libcxxabi/test/configs or define your own.")
diff --git a/libunwind/test/lit.site.cfg.in b/libunwind/test/lit.site.cfg.in
index 9fb324007a55..31530935ce87 100644
--- a/libunwind/test/lit.site.cfg.in
+++ b/libunwind/test/lit.site.cfg.in
@@ -56,3 +56,6 @@ import libunwind.test.config
configuration = libunwind.test.config.Configuration(lit_config, config)
configuration.configure()
configuration.print_config_info()
+
+lit_config.warning("This is a legacy testing configuration which will be removed in LLVM 16. "
+ "Please use one of the configurations in libunwind/test/configs or define your own.")