diff options
author | Joergen Ibsen <ji@ibse.dk> | 2017-11-25 10:06:14 +0100 |
---|---|---|
committer | Joergen Ibsen <ji@ibse.dk> | 2017-11-25 10:06:14 +0100 |
commit | 80157a5ea3faa8e53a3806203fc76251540c9652 (patch) | |
tree | 3f2e6286744404d96ce089ea6174983c1a622eab | |
parent | f31142de88a282c2e526f56d2f2c2a0347442e77 (diff) | |
download | meson-80157a5ea3faa8e53a3806203fc76251540c9652.zip meson-80157a5ea3faa8e53a3806203fc76251540c9652.tar.gz meson-80157a5ea3faa8e53a3806203fc76251540c9652.tar.bz2 |
Make prefix substitution test uppercase
-rw-r--r-- | test cases/common/166 custom target template substitution/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/166 custom target template substitution/meson.build b/test cases/common/166 custom target template substitution/meson.build index 00fe078..3f6a159 100644 --- a/test cases/common/166 custom target template substitution/meson.build +++ b/test cases/common/166 custom target template substitution/meson.build @@ -6,12 +6,12 @@ config = configuration_data() in = configure_file(configuration : config, output : 'x@IN') -# Check that substitution does not find @foo@ and then misses @INPUT0@. +# Check that substitution does not find @FOO@ and then misses @INPUT0@. # Check the resulting x@INPUT1@ is not replaced. foo = custom_target('runcheck', input : [in, 'foo.c.in'], output : 'foo.c', - command : [check, '-D@foo@INPUT0@PUT1@', '@INPUT1@', '@OUTPUT@'] + command : [check, '-D@FOO@INPUT0@PUT1@', '@INPUT1@', '@OUTPUT@'] ) executable('foo', foo) |