summaryrefslogtreecommitdiff
path: root/test cases/common/106 testframework options/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/106 testframework options/meson.build')
-rw-r--r--test cases/common/106 testframework options/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/common/106 testframework options/meson.build b/test cases/common/106 testframework options/meson.build
new file mode 100644
index 000000000..277373044
--- /dev/null
+++ b/test cases/common/106 testframework options/meson.build
@@ -0,0 +1,5 @@
+project('options', 'c')
+
+assert(get_option('testoption') == 'A string with spaces', 'Incorrect value for testoption option.')
+assert(get_option('other_one') == true, 'Incorrect value for other_one option.')
+assert(get_option('combo_opt') == 'one', 'Incorrect value for combo_opt option.')