aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-07-30 18:28:51 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-31 00:30:17 +0300
commitb72b5365afe319e576e254f12437aeff899eb03e (patch)
tree4274892785abd6c211d1c055a0c68d9900a7b448 /test cases
parent148a3a83a647a21cc102cb01d82cbeeb0940adc8 (diff)
downloadmeson-b72b5365afe319e576e254f12437aeff899eb03e.zip
meson-b72b5365afe319e576e254f12437aeff899eb03e.tar.gz
meson-b72b5365afe319e576e254f12437aeff899eb03e.tar.bz2
mintro: Fix crash related to the sources kwarg (fixes #5741)
Diffstat (limited to 'test cases')
-rw-r--r--test cases/unit/55 introspection/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/55 introspection/meson.build b/test cases/unit/55 introspection/meson.build
index 3f013aa..7589f3f 100644
--- a/test cases/unit/55 introspection/meson.build
+++ b/test cases/unit/55 introspection/meson.build
@@ -25,7 +25,7 @@ var2 = 2.to_string()
var3 = 'test3'
t1 = executable('test' + var1, ['t1.cpp'], link_with: [sharedlib], install: true, build_by_default: get_option('test_opt2'))
-t2 = executable('test@0@'.format('@0@'.format(var2)), 't2.cpp', link_with: [staticlib])
+t2 = executable('test@0@'.format('@0@'.format(var2)), sources: ['t2.cpp'], link_with: [staticlib])
t3 = executable(var3, 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1])
### BEGIN: Test inspired by taisei: https://github.com/taisei-project/taisei/blob/master/meson.build#L293