From 00aab9f01d48ffed65e03f82d3303feab7d4159c Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Sun, 31 Dec 2017 17:23:15 +0100 Subject: [PATCH] check_configtool.sh: show unified diffs. They're clearer about which change version is in what file. --- testcases/check_configtool.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/check_configtool.sh b/testcases/check_configtool.sh index 0aae09b..f9be896 100755 --- a/testcases/check_configtool.sh +++ b/testcases/check_configtool.sh @@ -32,7 +32,7 @@ git ls-files "config/*.h" | while read IN; do echo " Executed: ./configtool.py --load=\"${IN}\" --save=\"${OUT}\" --quit" echo " Expected resulting settings to match, but they do not." - diff -Bbw "${OUT}" "${OUT}.cmp" | sed -e 's/^/ /' || : + diff -uBbw "${OUT}" "${OUT}.cmp" | sed -e 's/^/ /' || : exit 1 fi done