aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/166 yield/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/166 yield/meson.build')
-rw-r--r--test cases/common/166 yield/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/common/166 yield/meson.build b/test cases/common/166 yield/meson.build
new file mode 100644
index 0000000..9b11569
--- /dev/null
+++ b/test cases/common/166 yield/meson.build
@@ -0,0 +1,7 @@
+project('yield_options', 'c')
+
+subproject('sub')
+
+assert(get_option('unshared_option') == 'one', 'Unshared option has wrong value in superproject.')
+assert(get_option('shared_option') == 'two', 'Shared option has wrong value in superproject..')
+assert(get_option('wrongtype_option') == 'three', 'Wrongtype option has wrong value in superproject..')