aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-11-16 13:06:33 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-11-16 13:06:33 +0200
commit189a1c2a8fad0716e0bc4132e21f664c80d7574b (patch)
tree0fea610c77cdab9fdbc01560fc51b0806b16b0ee /tests
parentae0e285185e79e45885ceda89bc5a4d758f2f75f (diff)
Disable C++20 modules tests for MinGW GCC
Things appear to be completely broken in GCC 11.x.
Diffstat (limited to 'tests')
-rw-r--r--tests/cc/modules/common.testscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/cc/modules/common.testscript b/tests/cc/modules/common.testscript
index 6f09c62..1e94b36 100644
--- a/tests/cc/modules/common.testscript
+++ b/tests/cc/modules/common.testscript
@@ -47,3 +47,10 @@ EOI
+$* noop <<EOI | set headers
print ($cxx.features.modules && $cxx.id == 'gcc')
EOI
+
+# @@ TMP: modules support is completely broken in MinGW GCC 11.x.
+#
+if ($cxx.target.class == 'windows' && $cxx.id == 'gcc')
+ modules = false
+ headers = false
+end