From b6b347a54794a4973a1e810936f2cb30f772d9ce Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Wed, 12 Feb 2020 14:32:43 +0000 Subject: [PATCH] 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 --- test cases/failing/19 target clash/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test cases/failing/19 target clash/meson.build b/test cases/failing/19 target clash/meson.build index fbc757c8c..ca09fb568 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'])