diff options
author | Dan Fandrich | 2010-08-29 04:47:03 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-08-29 04:47:03 +0200 |
commit | 140ac91fe154c9a1bb33cba38380c3cc81e1cf15 (patch) | |
tree | 99cd795e3a239c626d832f7137d25cf776164a86 /testsuite/readlink.tests | |
parent | 91234b9be04a90f08ee4506955983338f9d3a29e (diff) | |
download | busybox-140ac91fe154c9a1bb33cba38380c3cc81e1cf15.zip busybox-140ac91fe154c9a1bb33cba38380c3cc81e1cf15.tar.gz |
testsuite: show the number of failures after a test run
Signed-off-by: Dan Fandrich <dan@coneharvesters.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/readlink.tests')
-rwxr-xr-x | testsuite/readlink.tests | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/readlink.tests b/testsuite/readlink.tests index 73163b0..c7fc8ad 100755 --- a/testsuite/readlink.tests +++ b/testsuite/readlink.tests @@ -29,3 +29,5 @@ testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$PWD/$ # clean up rm -r "$TESTLINK" "$TESTDIR" + +exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255)) |