From ad1fe45f4ea6a7f05989dc37bc7dfbd0add869c6 Mon Sep 17 00:00:00 2001 From: pal1000 Date: Sun, 21 Aug 2022 18:36:05 +0300 Subject: [PATCH] Don't try running tests on Windows Fixes: fa803c7e --- tests/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index b331310..ae89df4 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -19,5 +19,7 @@ tests = [ # yuck foreach test : tests test_file = configure_file(input: test + '.sh', output: test, copy: true) - run_command('chmod', '755', test_file, check : true) + if host_machine.system() != 'windows' + run_command('chmod', '755', test_file, check : true) + endif endforeach