android_external_toybox/tests/bzcat.test
2017-04-07 11:37:04 -05:00

17 lines
504 B
Bash
Executable File

#!/bin/bash
[ -f testing.sh ] && . testing.sh
#testing "name" "command" "result" "infile" "stdin"
testing "2 known files" \
'bzcat "$FILES/blkid/"{minix,ntfs}.bz2 | sha1sum | cut -d " " -f 1' \
'c0b7469c9660d6056a988ef8a7fe73925efc9266\n' '' ''
testing "overflow" \
'bzcat "$FILES/bzcat/overflow.bz2" >/dev/null 2>/dev/null ;
[ $? -ne 0 ] && echo good' "good\n" "" ""
testing "badcrc" \
'bzcat "$FILES/bzcat/badcrc.bz2" > /dev/null 2>/dev/null ;
[ $? -ne 0 ] && echo good' "good\n" "" ""