diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-07 18:30:35 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-07 18:33:37 +0530 |
commit | 4990dd197c8bc8b61b940d3564f4d8479ce32d1c (patch) | |
tree | 88c1854b7e181d6cad5b28b9bd23a330f35d025b | |
parent | 71eddecdc7e82b16c5e454137d641f2a5f7c9c94 (diff) | |
download | meson-4990dd197c8bc8b61b940d3564f4d8479ce32d1c.zip meson-4990dd197c8bc8b61b940d3564f4d8479ce32d1c.tar.gz meson-4990dd197c8bc8b61b940d3564f4d8479ce32d1c.tar.bz2 |
Test arrays in languages for the project() method
This broke in 6590b7221e1e3a30b33a6b74b380ee5a2b24d7ef and we didn't
have a test for it.
-rw-r--r-- | test cases/common/1 trivial/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/common/1 trivial/meson.build b/test cases/common/1 trivial/meson.build index 3f14539..1f7b375 100644 --- a/test cases/common/1 trivial/meson.build +++ b/test cases/common/1 trivial/meson.build @@ -1,5 +1,8 @@ # Comment on the first line -project('trivial test', 'c', meson_version : '>=0.27.0') +project('trivial test', + # Comment inside a function call + array for language list + ['c'], + meson_version : '>=0.27.0') #this is a comment sources = 'trivial.c' |