summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Filippov <alekseyf@google.com>2018-03-06 22:35:06 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2018-03-07 19:56:49 +0200
commitc03a2fd2831444fe248cf983d89c19aeab1fff40 (patch)
treed03087069715711ed436f51221a60ade09936d94
parent9f7bdedc94944d11a5166eb47f199c592cb74c0d (diff)
downloadmeson-c03a2fd2831444fe248cf983d89c19aeab1fff40.tar.gz
Add indentation to 'common/64 custom header generator' test case
-rw-r--r--test cases/common/64 custom header generator/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/test cases/common/64 custom header generator/meson.build b/test cases/common/64 custom header generator/meson.build
index bcc9a53ce..33ba4c593 100644
--- a/test cases/common/64 custom header generator/meson.build
+++ b/test cases/common/64 custom header generator/meson.build
@@ -3,9 +3,9 @@ project('custom header generator', 'c')
gen = find_program('makeheader.py')
generated_h = custom_target('makeheader.py',
-output : 'myheader.lh', # Suffix not .h to ensure this works with custom suffixes, too.
-input : 'input.def',
-command : [gen, '@INPUT0@', '@OUTPUT0@', files('somefile.txt')])
+ output : 'myheader.lh', # Suffix not .h to ensure this works with custom suffixes, too.
+ input : 'input.def',
+ command : [gen, '@INPUT0@', '@OUTPUT0@', files('somefile.txt')])
prog = executable('prog', 'prog.c', generated_h)
test('gentest', prog)