summaryrefslogtreecommitdiffstats
path: root/tests/functions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functions.sh')
-rw-r--r--tests/functions.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/functions.sh b/tests/functions.sh
index 2a18ef583..81168fc32 100644
--- a/tests/functions.sh
+++ b/tests/functions.sh
@@ -3,6 +3,11 @@ TS_OUTDIR="$TS_TOPDIR/output"
TS_DIFFDIR="$TS_TOPDIR/diff"
TS_EXPECTEDDIR="$TS_TOPDIR/expected"
+function ts_skip {
+ echo " IGNORE ($1)"
+ exit 0
+}
+
function ts_init {
TS_NAME=$(basename $0)
if [ ! -d $TS_OUTDIR ]; then
@@ -37,7 +42,11 @@ function ts_finalize {
exit 0
fi
if [ $res -eq 0 ]; then
- echo " OK"
+ if [ x"$1" == x"" ]; then
+ echo " OK"
+ else
+ echo " OK ($1)"
+ fi
exit 0
else
echo " FAILED ($TS_NAME)"