aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/43 options/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/43 options/meson.build')
-rw-r--r--test cases/common/43 options/meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/common/43 options/meson.build b/test cases/common/43 options/meson.build
index 08c5cca..2eccef7 100644
--- a/test cases/common/43 options/meson.build
+++ b/test cases/common/43 options/meson.build
@@ -34,4 +34,12 @@ if get_option('neg_int_opt') != -3
error('Incorrect value in negative integer option.')
endif
+if get_option('CaseSenSiTivE') != 'Some CAPS'
+ error('Incorrect value in mixed caps option.')
+endif
+
+if get_option('CASESENSITIVE') != 'ALL CAPS'
+ error('Incorrect value in all caps option.')
+endif
+
assert(get_option('wrap_mode') == 'default', 'Wrap mode option is broken.')