diff options
Diffstat (limited to 'meson/test cases/common/182 find override/subdir')
3 files changed, 44 insertions, 0 deletions
diff --git a/meson/test cases/common/182 find override/subdir/converter.py b/meson/test cases/common/182 find override/subdir/converter.py new file mode 100755 index 000000000..efe04649d --- /dev/null +++ b/meson/test cases/common/182 find override/subdir/converter.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 + +import sys +import pathlib + +[ifilename, ofilename] = sys.argv[1:3] + +ftempl = '''int %s(void) { + return 6; +} +''' + +d = pathlib.Path(ifilename).read_text().split('\n')[0].strip() + +pathlib.Path(ofilename).write_text(ftempl % d) diff --git a/meson/test cases/common/182 find override/subdir/gencodegen.py.in b/meson/test cases/common/182 find override/subdir/gencodegen.py.in new file mode 100755 index 000000000..78ebb2f4e --- /dev/null +++ b/meson/test cases/common/182 find override/subdir/gencodegen.py.in @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 + +import sys +import pathlib + +[ifilename, ofilename] = sys.argv[1:3] + +ftempl = '''int %s(void) { + return @NUMBER@; +} +''' + +d = pathlib.Path(ifilename).read_text().split('\n')[0].strip() + +pathlib.Path(ofilename).write_text(ftempl % d) diff --git a/meson/test cases/common/182 find override/subdir/meson.build b/meson/test cases/common/182 find override/subdir/meson.build new file mode 100644 index 000000000..e5de34dde --- /dev/null +++ b/meson/test cases/common/182 find override/subdir/meson.build @@ -0,0 +1,14 @@ +x = find_program('converter.py') + +meson.override_find_program('codegen', x) + +# Override a command with a generated script + +cdata = configuration_data() + +cdata.set('NUMBER', 100) +numprog = configure_file(input : 'gencodegen.py.in', + output : 'gencodegen.py', + configuration : cdata) + +meson.override_find_program('gencodegen', numprog) |