The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
637 B
21 lines
637 B
2 years ago
|
project('test format string')
|
||
|
|
||
|
# Test all supported types in message(), format(), f-string.
|
||
|
foreach t : [get_option('opt'), 42, true, false, 'str', ['list'], {'dict': 'value'}]
|
||
|
message(t, '@0@'.format(t), f'@t@', [t], {'key': t})
|
||
|
endforeach
|
||
|
|
||
|
# Deprecated but should work with str.format().
|
||
|
env = environment()
|
||
|
message('@0@'.format(env))
|
||
|
|
||
|
# Should fail with f-string and message()
|
||
|
error_msg = 'Value other than strings, integers, bools, options, dictionaries and lists thereof.'
|
||
|
testcase expect_error('message(): ' + error_msg)
|
||
|
message(env)
|
||
|
endtestcase
|
||
|
|
||
|
testcase expect_error('f-string: ' + error_msg)
|
||
|
message(f'@env@')
|
||
|
endtestcase
|