summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/test_base.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-29 11:22:53 +0800
committerGitHub <[email protected]>2025-12-29 11:22:53 +0800
commit7c06c581c3f99a3eda87d88a334e42802175ddfd (patch)
treebb6e90071765465d8fb5e6e87fe2a3d94158f0bf /tests/projects/c++/modules/test_base.lua
parent399988ff7a79d7d9ee994c8911bf6e69588dd7c5 (diff)
parent34c820992ce4dd7a11ed644f7ab253a98466c54d (diff)
Merge pull request #7172 from xmake-io/modules
prepare test targets in compile_commands
Diffstat (limited to 'tests/projects/c++/modules/test_base.lua')
-rw-r--r--tests/projects/c++/modules/test_base.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/projects/c++/modules/test_base.lua b/tests/projects/c++/modules/test_base.lua
index 6f2a42088..6116b36e6 100644
--- a/tests/projects/c++/modules/test_base.lua
+++ b/tests/projects/c++/modules/test_base.lua
@@ -136,12 +136,12 @@ function run_tests(clang_options, gcc_options, msvc_options)
build_tests("clang-cl", clang_cl_options)
build_tests("clang-cl", table.join(clang_options, {two_phases = false}))
end
- if not clang_options.stdmodule then
+ if clang_options.stdmodule then
+ wprint("std modules tests skipped for Windows clang libc++ as it's not currently supported officially")
+ else
build_tests("llvm", clang_libcpp_options)
build_tests("clang", clang_libcpp_options)
build_tests("clang", table.join(clang_libcpp_options, {two_phases = false}))
- else
- wprint("std modules tests skipped for Windows clang libc++ as it's not currently supported officially")
end
end
if msvc_options then