From 045ec600860d00957aa481b818b67d689ffdf544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20V=C3=A1rady?= Date: Mon, 22 Nov 2021 23:07:11 +0100 Subject: [PATCH] build: specify shell for cram tests This is an attempt to fix cram tests in non-POSIX-compliant environment. --- test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index ec2909f..471cc7c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -10,6 +10,6 @@ if sh.found() and cram.found() env.set('TERM', 'dumb') test('cram tests', cram, - args: [join_paths(meson.current_source_dir(), 'cram')], + args: ['--shell=' + sh.path(), join_paths(meson.current_source_dir(), 'cram')], env: env) endif