]> git.michaelhowe.org Git - packages/b/bup.git/commitdiff
Make the Makefile call tests via bash
authorMichael Howe <michael@michaelhowe.org>
Thu, 22 Oct 2015 07:32:12 +0000 (08:32 +0100)
committerMichael Howe <michael@michaelhowe.org>
Thu, 22 Oct 2015 07:43:43 +0000 (08:43 +0100)
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

index 833d865f1874d1583c02da420fdd1003f106eaf5..7336de2cccf96954765bb4f388ff588f459e2bb4 100644 (file)
--- 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))