diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-24 13:47:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-24 13:47:34 +0200 |
commit | 454ae53155c64fd4edea2cd166ef77c638ac0f6e (patch) | |
tree | 42e85bf78932b868ea7b8ae931a88c08f498dda0 | |
parent | 57a8dbd7fe63b2ed8618bde71a779102f0ab6ca9 (diff) |
Stop forcing modules support in tests
-rw-r--r-- | tests/cc/modules/common.testscript | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/cc/modules/common.testscript b/tests/cc/modules/common.testscript index 4b7d109..cb567a3 100644 --- a/tests/cc/modules/common.testscript +++ b/tests/cc/modules/common.testscript @@ -17,24 +17,9 @@ using in # cxx.std = experimental cxx.features.symexport = true -cxx.features.modules = true using cxx -# We forced modules but for VC we need at least 15u5 (19.12). So "unforce" -# them in this case. -# -if ($cxx.id == 'msvc' && $cxx.version.major == 19 && $cxx.version.minor < 12) - cxx.features.modules = false - -# In Clang 9 modules are enabled by default in the c++2a mode and there is -# no way to disable them. See the following post for details: -# -# http://lists.llvm.org/pipermail/cfe-dev/2019-October/063637.html -# -if ($cxx.id == 'clang' && $cxx.version.major >= 9) - cxx.features.modules = false - hxx{*}: extension = hxx mxx{*}: extension = mxx cxx{*}: extension = cxx |