Skip to content

Commit 382b707

Browse files
authored
[libc++] Add coverage for C++17 and Clang Modules with LSV (#131815)
In recent versions of Clang, using -std=c++20 (and later) implies LSV when compiling with modules. This change resulted in making our LSV job redundant with the regular modules job, which uses the latest Standard. This patch increases the coverage of our CI without increasing its cost by pinning the LSV job to use C++17, which normally doesn't use LSV. A related question is whether we should add coverage for non-LSV builds using Clang modules.
1 parent 909bff8 commit 382b707

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.github/workflows/libcxx-build-and-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
'generic-hardening-mode-fast',
138138
'generic-hardening-mode-fast-with-abi-breaks',
139139
'generic-merged',
140-
'generic-modules-lsv',
140+
'generic-modules-cxx17-lsv',
141141
'generic-no-exceptions',
142142
'generic-no-experimental',
143143
'generic-no-filesystem',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
set(LIBCXX_TEST_PARAMS "enable_modules=clang-lsv;std=c++17" CACHE STRING "")
2+
set(LIBCXXABI_TEST_PARAMS "${LIBCXX_TEST_PARAMS}" CACHE STRING "")

libcxx/cmake/caches/Generic-modules-lsv.cmake

-2
This file was deleted.

libcxx/test/libcxx/atomics/atomics.syn/incompatible_with_stdatomic.verify.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// UNSUPPORTED: no-threads
1010
// REQUIRES: c++03 || c++11 || c++14 || c++17 || c++20
1111

12+
// No diagnostic gets emitted when we build with modules.
13+
// XFAIL: clang-modules-build
14+
1215
// This test ensures that we issue a reasonable diagnostic when including <atomic> after
1316
// <stdatomic.h> has been included. Before C++23, this otherwise leads to obscure errors
1417
// because <atomic> may try to redefine things defined by <stdatomic.h>.

libcxx/utils/ci/run-buildbot

+2-2
Original file line numberDiff line numberDiff line change
@@ -454,9 +454,9 @@ generic-modules)
454454
check-runtimes
455455
check-abi-list
456456
;;
457-
generic-modules-lsv)
457+
generic-modules-cxx17-lsv)
458458
clean
459-
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-modules-lsv.cmake"
459+
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-modules-cxx17-lsv.cmake"
460460
check-runtimes
461461
check-abi-list
462462
;;

libcxx/utils/libcxx/test/params.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ def getSuitableClangTidy(cfg):
210210
choices=["none", "clang", "clang-lsv"],
211211
type=str,
212212
help="Whether to build the test suite with modules enabled. "
213-
"Select `clang` for Clang modules, and 'clang-lsv' for Clang modules with Local Submodule Visibility.",
213+
"Select `clang` for Clang modules, and 'clang-lsv' for Clang modules with Local Submodule Visibility. "
214+
"Note that in recent versions of Clang, using Clang modules with -std=c++20 and later implies LSV.",
214215
default="none",
215216
actions=lambda modules: filter(None, [
216217
AddFeature("clang-modules-build") if modules in ("clang", "clang-lsv") else None,

0 commit comments

Comments
 (0)