From 5068f13a287123b9bd73dbb95b9d7faa33b420a4 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 18 Sep 2017 04:57:21 +0530 Subject: [PATCH] tests/common/159: Don't try to run 'echo' It's not available on Windows. It was passing in the CI because bash tools are available on AppVeyor by default. --- test cases/common/159 reserved targets/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test cases/common/159 reserved targets/meson.build b/test cases/common/159 reserved targets/meson.build index 26572c0e9..24fd937bc 100644 --- a/test cases/common/159 reserved targets/meson.build +++ b/test cases/common/159 reserved targets/meson.build @@ -26,6 +26,9 @@ subdir('uninstall') subdir('runtarget') +py3 = import('python3').find_python() + custom_target('ctlist-test', output : 'out.txt', - command : ['echo'], capture : true, + command : [py3, '-c', 'print("")'], + capture : true, build_by_default : true)