From: Michael Howe Date: Thu, 22 Oct 2015 07:32:12 +0000 (+0100) Subject: Make the Makefile call tests via bash X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=612e401e059fa2806a22bc94ec700bfd68faed0c;p=packages%2Fb%2Fbup.git 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). --- 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))