bbunzip_test2.sh 296 字节
Newer Older
ZHJ0125's avatar
ZHJ0125 已提交
1 2 3 4 5 6 7 8 9 10
#!/bin/sh
# Leak test for gunzip. Watch top for growing process size.

# Just using urandom will make gzip use method 0 (store) -
# not good for test coverage!

cat /dev/urandom \
| while true; do read junk; echo "junk $RANDOM $junk"; done \
| ../busybox gzip \
| ../busybox gunzip -c >/dev/null