summaryrefslogtreecommitdiff
path: root/test cases/unit
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-04-20 20:38:59 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-04-23 09:10:42 +0200
commit2bb4ec19f2ce290a348d54185cf5931c6d37aa58 (patch)
treee08ae4c28c844d5b64edbd51a143b67063b31df9 /test cases/unit
parentadd821db64b3c1fd7568736aaa67de53ad382eb4 (diff)
downloadmeson-2bb4ec19f2ce290a348d54185cf5931c6d37aa58.tar.gz
ast: resolve ID nodes in flatten_args
Diffstat (limited to 'test cases/unit')
-rw-r--r--test cases/unit/55 introspection/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/test cases/unit/55 introspection/meson.build b/test cases/unit/55 introspection/meson.build
index 95a7c5f0f..55e80c116 100644
--- a/test cases/unit/55 introspection/meson.build
+++ b/test cases/unit/55 introspection/meson.build
@@ -20,9 +20,11 @@ endif
subdir('sharedlib')
subdir('staticlib')
+var3 = 'test3'
+
t1 = executable('test1', 't1.cpp', link_with: [sharedlib], install: true, build_by_default: get_option('test_opt2'))
t2 = executable('test2', 't2.cpp', link_with: [staticlib])
-t3 = executable('test3', 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1])
+t3 = executable(var3, 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1])
test('test case 1', t1)
test('test case 2', t2)