diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-21 02:09:14 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-21 04:53:30 +0200 |
| commit | 42ba909a17dd780a8bf1ba51a8fcd05ad9418ebd (patch) | |
| tree | a2d073849e95db09bc9a68971d4e2cc84251e4a0 /tests/projects/c++/modules/test_base.lua | |
| parent | 8b4e9f90ba045edb14cb2800c506ee6bc5118cd7 (diff) | |
(C++ modules support) add clang-cl to C++ modules tests
Diffstat (limited to 'tests/projects/c++/modules/test_base.lua')
| -rw-r--r-- | tests/projects/c++/modules/test_base.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/test_base.lua b/tests/projects/c++/modules/test_base.lua index f060cfa0c..3f05281f3 100644 --- a/tests/projects/c++/modules/test_base.lua +++ b/tests/projects/c++/modules/test_base.lua @@ -127,6 +127,9 @@ function run_tests(clang_options, gcc_options, msvc_options) if clang_options then build_tests("llvm", clang_options) build_tests("clang", clang_options) + local clang_cl_options = table.clone(clang_options) + clang_cl_options.compiler = "clang-cl" + build_tests("clang-cl", clang_cl_options) if not clang_options.stdmodule then build_tests("llvm", clang_libcpp_options) build_tests("clang", clang_libcpp_options) |
