test cases: Merge two configure_file tests

Unnecessary overhead having a separate test like that.
This commit is contained in:
Nirbheek Chauhan 2018-07-03 19:32:03 +05:30 committed by Nirbheek Chauhan
parent 70bc754a2c
commit 2ac6f6be32
3 changed files with 8 additions and 9 deletions

View File

@ -1,9 +0,0 @@
project('conf file in test')
test_file = configure_file(
input: 'test.py.in',
output: 'test.py',
configuration: configuration_data()
)
test('configure-file', test_file)

View File

@ -184,3 +184,11 @@ configure_file(
encoding : 'koi8-r',
configuration : conf8
)
test_file = configure_file(
input: 'test.py.in',
output: 'test.py',
configuration: configuration_data()
)
test('configure-file', test_file)