diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-01-16 13:33:24 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-01-16 13:33:24 +0100 |
commit | 39cc82288036a005226564fadd05ef19ef0037bb (patch) | |
tree | df186eb0d0229064be3a05d838650aa3c4850aac /test/integration/framework | |
parent | 2cf8c58b3f5e850d44645c23e33ce1be96bcad0b (diff) |
implement i quiet run-tests mode which prints only one line per testcase
Diffstat (limited to 'test/integration/framework')
-rw-r--r-- | test/integration/framework | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework index 4bbe1b408..5d54e49b6 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -39,6 +39,10 @@ fi if [ $MSGLEVEL -le 2 ]; then msgmsg() { true; } msgnmsg() { true; } + msgtest() { true; } + msgpass() { echo -n " ${CPASS}P${CNORMAL}" >&2; } + msgskip() { echo -n " ${CWARNING}S${CNORMAL}" >&2; } + msgfail() { echo -n " ${CFAIL}FAIL${CNORMAL}" >&2; } fi if [ $MSGLEVEL -le 3 ]; then msginfo() { true; } |