diff options
author | Rob Landley <rob@landley.net> | 2008-06-22 00:57:44 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-06-22 00:57:44 -0500 |
commit | 7bc357dc70f1f64e607f28b21a779af2c8a09753 (patch) | |
tree | bd89abf0529064d8ec2199129a3f7135f746ef41 | |
parent | 37256ff6f390cbf86a14249e32e37865c85f1f2d (diff) | |
download | toybox-7bc357dc70f1f64e607f28b21a779af2c8a09753.tar.gz |
Cosmetic tweak, only show skipped tests when VERBOSE set.
-rw-r--r-- | scripts/test/testing.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/testing.sh b/scripts/test/testing.sh index a9bc6725..fd233697 100644 --- a/scripts/test/testing.sh +++ b/scripts/test/testing.sh @@ -63,7 +63,7 @@ testing () if [ -n "$SKIP" ] then - echo "SKIPPED: $NAME" + [ ! -z "$VERBOSE" ] && echo "SKIPPED: $NAME" return 0 fi |