aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-02-12 14:32:43 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2020-02-28 11:52:33 +0000
commitb6b347a54794a4973a1e810936f2cb30f772d9ce (patch)
treee61734ce8d0b32939c611f8025933f7a170308ea
parent63d67e20425b2da6668231fead3f86e16e163943 (diff)
downloadmeson-b6b347a54794a4973a1e810936f2cb30f772d9ce.zip
meson-b6b347a54794a4973a1e810936f2cb30f772d9ce.tar.gz
meson-b6b347a54794a4973a1e810936f2cb30f772d9ce.tar.bz2
Update test case to use run_target(command:)
Currently this test is just failing due to an unexpected positional argument, as the (deprecated) keywordless run_target() was removed in 0.45.0
-rw-r--r--test cases/failing/19 target clash/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/failing/19 target clash/meson.build b/test cases/failing/19 target clash/meson.build
index fbc757c..ca09fb5 100644
--- a/test cases/failing/19 target clash/meson.build
+++ b/test cases/failing/19 target clash/meson.build
@@ -12,4 +12,4 @@ if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'
endif
executable('clash', 'clash.c')
-run_target('clash', 'echo', 'clash 1')
+run_target('clash', command: ['echo', 'clash 1'])