aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/95 implicit force fallback/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/95 implicit force fallback/meson.build')
-rw-r--r--test cases/unit/95 implicit force fallback/meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/unit/95 implicit force fallback/meson.build b/test cases/unit/95 implicit force fallback/meson.build
new file mode 100644
index 0000000..623a338
--- /dev/null
+++ b/test cases/unit/95 implicit force fallback/meson.build
@@ -0,0 +1,8 @@
+project('implicit force fallback')
+
+# The dependency 'something' is provided by a subproject. Normally this won't
+# use the fallback subproject because required is false. However this unit test
+# is configured with wrap_mode=forcefallback and force_fallback_for=something
+# in which case we are expecting the fallback to be done.
+d = dependency('something', required: false)
+assert(d.found())