From: Ralph Corderoy Date: Sat, 20 May 2017 11:09:13 +0000 (+0100) Subject: test/common.sh.in: test_skip(): Remove unused variable. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/2fd34743d19049035fc566b10a0d40cd88231c3c?ds=sidebyside;hp=18fceae399301f4a69ca3c92f85a1657d46dfd25 test/common.sh.in: test_skip(): Remove unused variable. `$Test' was being interpolated into the output, but has never existed. Rephrase the output given a /^SKIP: / line follows from the test harness due to the `exit 77'. --- diff --git a/test/common.sh.in b/test/common.sh.in index 54b885e4..45db9db3 100644 --- a/test/common.sh.in +++ b/test/common.sh.in @@ -70,8 +70,8 @@ fi test_skip () { - WHY="$1" - echo "$Test $0 SKIP ($WHY)" + why="$1" + echo "$0: skipped: $why" exit 77 }