aboutsummaryrefslogtreecommitdiff
path: root/test cases/common
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2020-08-12 15:54:43 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2020-08-12 12:02:39 +0000
commit2c3ad37f240fe65f05c82a77c3a74b6fa3a4fd4c (patch)
tree44d0dfa2a3669ae2ec5550e772f3daf6638ba208 /test cases/common
parent847d652c4ef179bbf94c0e322dc3277858fcf08c (diff)
downloadmeson-2c3ad37f240fe65f05c82a77c3a74b6fa3a4fd4c.zip
meson-2c3ad37f240fe65f05c82a77c3a74b6fa3a4fd4c.tar.gz
meson-2c3ad37f240fe65f05c82a77c3a74b6fa3a4fd4c.tar.bz2
Test for spurious warning from get_target_filename
Fixed by #7494 without a test, so here's a test. Extracted from https://github.com/mesonbuild/meson/pull/7539
Diffstat (limited to 'test cases/common')
-rw-r--r--test cases/common/235 custom_target source/a0
-rw-r--r--test cases/common/235 custom_target source/meson.build5
-rw-r--r--test cases/common/235 custom_target source/x.py5
3 files changed, 10 insertions, 0 deletions
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