[PATCH] support bc version 1.04
From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:42:02
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:42:02
Subsystem:
the rest · Maintainer:
Linus Torvalds
Test t6002 unnecessarily fails when bc is a bit older than average. Signed-off-by: Johannes.Schindelin <redacted> --- t/t6002-rev-list-bisect.sh | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) ccea5a568914eafc07caf0c291afe5f962672cd3
diff --git a/t/t6002-rev-list-bisect.sh b/t/t6002-rev-list-bisect.sh
--- a/t/t6002-rev-list-bisect.sh
+++ b/t/t6002-rev-list-bisect.sh@@ -11,8 +11,12 @@ bc_expr() { bc <<EOF scale=1 -define abs(x) { if (x>=0) { return x; } else { return -x; } } -define floor(x) { save=scale; scale=0; result=x/1; scale=save; return result; } +define abs(x) { + if (x>=0) { return (x); } else { return (-x); } +} +define floor(x) { + save=scale; scale=0; result=x/1; scale=save; return (result); +} $* EOF }