blob: 5b7e83e132156bc166024662620ba95fb037ebe4 [file] [log] [blame]
Denis Vlasenkod21f5962007-10-05 15:27:03 +00001#!/bin/sh
2# Leak test for gunzip. Watch top for growing process size.
3
4# Just using urandom will make gzip use method 0 (store) -
5# not good for test coverage!
6
7cat /dev/urandom \
8| while true; do read junk; echo "junk $RANDOM $junk"; done \
9| ../busybox gzip \
10| ../busybox gunzip -c >/dev/null