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
pull/6707/head
Jon Turney 5 years ago
parent 63d67e2042
commit b6b347a547
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
  1. 2
      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'])

Loading…
Cancel
Save