diff -r d77f3f04a227 -r aede9b9a2ffa scripts/functions --- a/scripts/functions Tue Apr 13 21:47:34 2010 +0200 +++ b/scripts/functions Mon Apr 19 23:42:31 2010 +0200 @@ -150,6 +150,7 @@ local ret local m="$1" shift + CT_DoLog DEBUG "Testing '! ( $* )'" test "$@" && CT_DoLog WARN "$m" return 0 } @@ -159,6 +160,7 @@ CT_TestAndAbort() { local m="$1" shift + CT_DoLog DEBUG "Testing '! ( $* )'" test "$@" && CT_Abort "$m" return 0 } @@ -168,6 +170,7 @@ CT_TestOrAbort() { local m="$1" shift + CT_DoLog DEBUG "Testing '$*'" test "$@" || CT_Abort "$m" return 0 }