busybox/shell/hush_test/hush-z_slow/leak_empty_tick.tests
Denys Vlasenko 385cc59117 hush: plug a memory leak
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-01-12 06:47:39 +01:00

29 lines
339 B
Plaintext
Executable File

echo "Warm up"
i=1
while test $i != 9; do
`true`
: $((i++))
done
memleak
echo "Measuring memory leak..."
i=1
while test $i != 199; do
`true`
: $((i++))
done
i=1
while test $i != 199; do
`true`
: $((i++))
done
memleak
kb=$?
if test $kb -le 4; then
echo Ok #$kb
else
echo "Bad: $kb kb (or more) leaked"
fi