From 612e401e059fa2806a22bc94ec700bfd68faed0c Mon Sep 17 00:00:00 2001 From: Michael Howe Date: Thu, 22 Oct 2015 08:32:12 +0100 Subject: [PATCH] Make the Makefile call tests via bash Work around the fact that there is a new test file whose executable state isn't reflected in the debian patches (meaning that builds fail). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 833d865..7336de2 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ cmdline_tests := \ # For parallel runs. tmp-target-run-test%: all t/tmp - TMPDIR="$(test_tmp)" t/test$* + TMPDIR="$(test_tmp)" /usr/bin/env bash t/test$* runtests-cmdline: $(subst t/test,tmp-target-run-test,$(cmdline_tests)) -- 2.39.5