aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/253 module warnings/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/253 module warnings/meson.build')
-rw-r--r--test cases/common/253 module warnings/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/common/253 module warnings/meson.build b/test cases/common/253 module warnings/meson.build
index 543a700..8397930 100644
--- a/test cases/common/253 module warnings/meson.build
+++ b/test cases/common/253 module warnings/meson.build
@@ -2,3 +2,7 @@ project('module warnings', meson_version : '>= 0.56')
import('python3') # deprecated module
import('java') # new module
+import('unstable-keyval') # module that has been stabilized, import with unstable-
+
+ice = import('icestorm', required : false)
+assert(not ice.found(), 'unstable-icestorm module should not be importable as `simd`')