diff options
Diffstat (limited to 'testsuite/bunzip2.tests')
-rwxr-xr-x | testsuite/bunzip2.tests | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/bunzip2.tests b/testsuite/bunzip2.tests index fcfce1a31..edb332748 100755 --- a/testsuite/bunzip2.tests +++ b/testsuite/bunzip2.tests | |||
@@ -552,6 +552,22 @@ if test "${0##*/}" = "bunzip2.tests"; then | |||
552 | echo "FAIL: $unpack: pbzip_4m_zeros file" | 552 | echo "FAIL: $unpack: pbzip_4m_zeros file" |
553 | FAILCOUNT=$((FAILCOUNT + 1)) | 553 | FAILCOUNT=$((FAILCOUNT + 1)) |
554 | fi | 554 | fi |
555 | |||
556 | errout="`${bb}bunzip2 <bz2_issue_11.bz2 2>&1 >/dev/null`" | ||
557 | if test x"$errout:$?" = x"bunzip2: bunzip error -5:1"; then | ||
558 | echo "PASS: $unpack: bz2_issue_11.bz2 corrupted example" | ||
559 | else | ||
560 | echo "FAIL: $unpack: bz2_issue_11.bz2 corrupted example" | ||
561 | FAILCOUNT=$((FAILCOUNT + 1)) | ||
562 | fi | ||
563 | |||
564 | errout="`${bb}bunzip2 <bz2_issue_12.bz2 2>&1 >/dev/null`" | ||
565 | if test x"$errout:$?" = x"bunzip2: bunzip error -3:1"; then | ||
566 | echo "PASS: $unpack: bz2_issue_12.bz2 corrupted example" | ||
567 | else | ||
568 | echo "FAIL: $unpack: bz2_issue_12.bz2 corrupted example" | ||
569 | FAILCOUNT=$((FAILCOUNT + 1)) | ||
570 | fi | ||
555 | fi | 571 | fi |
556 | 572 | ||
557 | exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255)) | 573 | exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255)) |