diff options
author | Jan Pokorný <jpokorny@redhat.com> | 2014-01-23 21:06:00 +0100 |
---|---|---|
committer | Jan Pokorný <jpokorny@redhat.com> | 2014-01-23 21:07:46 +0100 |
commit | 059d6d300aa71b6c1a323f49daaa2068522f84ee (patch) | |
tree | 1041c5b4246585dfac4a105329b94fe58160cbf2 /runtests.sh | |
parent | e5137c7a985adfad0ba6aea805030973da3e04ca (diff) | |
download | clufter-059d6d300aa71b6c1a323f49daaa2068522f84ee.tar.gz clufter-059d6d300aa71b6c1a323f49daaa2068522f84ee.tar.xz clufter-059d6d300aa71b6c1a323f49daaa2068522f84ee.zip |
Separate loglevels for testruns and running from main-boostrap
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.sh b/runtests.sh index 2f3fbbf..663211a 100755 --- a/runtests.sh +++ b/runtests.sh @@ -28,7 +28,7 @@ else # pre-2.7 unittest doesn't offer test discovery, use external unittest2 CMD="unit2" fi -DEBUG="|& sed 's|\(.*\)DEBUG:.*|\1|' | grep -v '^[ ]*$'" +DEBUG="env LOGLEVEL=WARNING" VERBOSE=1 ACC= while [ $# -gt 0 ]; do @@ -54,4 +54,4 @@ fi if [ ! -t 0 ]; then COLORIZE= fi -eval "$CMD $ACC $DEBUG $COLORIZE" +eval "$DEBUG $CMD $ACC $COLORIZE" |