[PATCH] cogito: selftests need bash
From: Gerrit Pape <hidden>
Date: 2016-06-15 22:42:31
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Gerrit Pape <hidden>
Date: 2016-06-15 22:42:31
Subsystem:
the rest · Maintainer:
Linus Torvalds
Force bash for selftest scripts, as they fail with posix sh. Signed-off-by: Gerrit Pape <redacted> --- t/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 0f3a68d543ebb55564bb4edca8a26722f6de8da8
diff --git a/t/Makefile b/t/Makefile
index 6882e23..b8e6eec 100644
--- a/t/Makefile
+++ b/t/Makefile@@ -8,7 +8,7 @@ #GIT_TEST_OPTS=--verbose --debug T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) all: - @$(foreach t,$T,echo "*** $t ***"; sh $t $(GIT_TEST_OPTS) || exit; ) + @$(foreach t,$T,echo "*** $t ***"; bash $t $(GIT_TEST_OPTS) || exit; ) @rm -fr trash clean:
--
1.3.3