diff options
-rwxr-xr-x | run_unittests.py | 8 | ||||
-rw-r--r-- | test cases/common/235 custom_target source/a | 0 | ||||
-rw-r--r-- | test cases/common/235 custom_target source/meson.build | 5 | ||||
-rw-r--r-- | test cases/common/235 custom_target source/x.py | 5 |
4 files changed, 18 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 49e2206..7044d5e 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -5029,6 +5029,14 @@ recommended as it is not supported on some platforms''') self.build() self.run_tests() + def test_multi_output_custom_target_no_warning(self): + testdir = os.path.join(self.common_test_dir, '235 custom_target source') + + out = self.init(testdir) + self.assertNotRegex(out, 'WARNING:.*Using the first one.') + self.build() + self.run_tests() + class FailureTests(BasePlatformTests): ''' Tests that test failure conditions. Build files here should be dynamically diff --git a/test cases/common/235 custom_target source/a b/test cases/common/235 custom_target source/a new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test cases/common/235 custom_target source/a diff --git a/test cases/common/235 custom_target source/meson.build b/test cases/common/235 custom_target source/meson.build new file mode 100644 index 0000000..98b9d26 --- /dev/null +++ b/test cases/common/235 custom_target source/meson.build @@ -0,0 +1,5 @@ +project('a', ['c']) + +x = find_program('x.py') +outs = custom_target('foo', output: ['x.c', 'y'], input: 'a', command: [x]) +executable('testprog', outs[0]) diff --git a/test cases/common/235 custom_target source/x.py b/test cases/common/235 custom_target source/x.py new file mode 100644 index 0000000..12f40c8 --- /dev/null +++ b/test cases/common/235 custom_target source/x.py @@ -0,0 +1,5 @@ +#! /usr/bin/env python3 +with open('x.c', 'w') as f: + print('int main(void) { return 0; }', file=f) +with open('y', 'w'): + pass |