diff options
Diffstat (limited to 'test cases/common/40 options/meson.build')
-rw-r--r-- | test cases/common/40 options/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test cases/common/40 options/meson.build b/test cases/common/40 options/meson.build index 3849d54..f41265a 100644 --- a/test cases/common/40 options/meson.build +++ b/test cases/common/40 options/meson.build @@ -40,8 +40,7 @@ if get_option('integer_opt') != 3 endif negint = get_option('neg_int_opt') - -if negint != -3 and negint != -10 +if negint not in [-2, -3, -10] error('Incorrect value @0@ in negative integer option.'.format(negint)) endif |