testsuite: Fix installed-test metadata for autotestkeywords

The executable is called autotestkeywords, so we shouldn't try to run
an executable named keywords. Also rename the metadata file to match.

Signed-off-by: Simon McVittie <smcv@debian.org>
This commit is contained in:
Simon McVittie 2018-09-19 08:09:18 +01:00
parent d19cba429d
commit fa8190328d

View File

@ -118,9 +118,9 @@ if add_languages('cpp', required: false)
if get_option('install-tests')
conf = configuration_data()
conf.set('testexecdir', testexecdir)
conf.set('test', 'keywords')
conf.set('test', 'autotestkeywords')
configure_file(input: 'gtk.test.in',
output: 'keywords.test',
output: 'autotestkeywords.test',
configuration: conf,
install_dir: testdatadir)
endif