diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-06-12 18:39:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-06-12 18:39:03 +0200 |
commit | 286bcb4988768f149c752231d66234a3d2a38590 (patch) | |
tree | f34ea4922274fe02b541bbdecd476c57ca98c23e /tests | |
parent | d362a81e73e56c8e79114e327a6a9a53c8f8c008 (diff) |
Don't force C++ modules in tests for VC
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cc/modules/testscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/cc/modules/testscript b/tests/cc/modules/testscript index 8f6fd96..71ae34d 100644 --- a/tests/cc/modules/testscript +++ b/tests/cc/modules/testscript @@ -13,7 +13,10 @@ EOI +cat <<EOI >=build/root.build cxx.std = experimental -cxx.features.modules = true + +# Force modules except for VC where we need at least 15u3. +# +cxx.features.modules = ($cxx.id != "msvc") using cxx |