diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional/meson.build | 2 | ||||
-rw-r--r-- | tests/include/meson.build | 2 | ||||
-rw-r--r-- | tests/tcg/plugins/meson.build | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/meson.build b/tests/functional/meson.build index e7e051e..e9f19d5 100644 --- a/tests/functional/meson.build +++ b/tests/functional/meson.build @@ -417,4 +417,4 @@ endforeach run_target('precache-functional', depends: precache_all, - command: ['true']) + command: [python, '-c', '']) diff --git a/tests/include/meson.build b/tests/include/meson.build index 9abba30..8e8d1ec 100644 --- a/tests/include/meson.build +++ b/tests/include/meson.build @@ -13,4 +13,4 @@ test_qapi_outputs_extra = [ test_qapi_files_extra = custom_target('QAPI test (include)', output: test_qapi_outputs_extra, input: test_qapi_files, - command: 'true') + command: [python, '-c', '']) diff --git a/tests/tcg/plugins/meson.build b/tests/tcg/plugins/meson.build index 41f02f2..0293422 100644 --- a/tests/tcg/plugins/meson.build +++ b/tests/tcg/plugins/meson.build @@ -17,7 +17,7 @@ endif if t.length() > 0 alias_target('test-plugins', t) else - run_target('test-plugins', command: find_program('true')) + run_target('test-plugins', command: [python, '-c', '']) endif plugin_modules += t |