aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-07-24 14:14:32 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-07-25 21:36:52 +0300
commitbf41d56597349a7047f2034e3e3e00d4502220cc (patch)
treea3d0e03a3c71c037a38eea4977e1ebf42b0e1c07 /test cases/unit
parent61ec2158609dcd30b9f4e0389cae558fdcdd298d (diff)
downloadmeson-bf41d56597349a7047f2034e3e3e00d4502220cc.zip
meson-bf41d56597349a7047f2034e3e3e00d4502220cc.tar.gz
meson-bf41d56597349a7047f2034e3e3e00d4502220cc.tar.bz2
ast: Add dummy "support" for fstrings in the ast package
Diffstat (limited to 'test cases/unit')
-rw-r--r--test cases/unit/57 introspection/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/test cases/unit/57 introspection/meson.build b/test cases/unit/57 introspection/meson.build
index 2f666f3..568d5cc 100644
--- a/test cases/unit/57 introspection/meson.build
+++ b/test cases/unit/57 introspection/meson.build
@@ -27,6 +27,8 @@ var1 = '1'
var2 = 2.to_string()
var3 = 'test3'
+var4 = f'test @var1@ string' # TODO: Actually implement fstrings
+
cus1 = custom_target('custom target test 1', output: 'file2', input: 'cp.py',
command: [find_program('cp.py'), '@INPUT@', '@OUTPUT@'])
cus2 = custom_target('custom target test 2', output: 'file3', input: cus1,