1
0
mirror of https://github.com/sheumann/hush.git synced 2024-12-30 05:29:47 +00:00

make leak test more robust by unsetting all vars

This commit is contained in:
Denis Vlasenko 2009-04-26 23:25:36 +00:00
parent 28e67966f3
commit 42e4af3119

View File

@ -1,7 +1,6 @@
echo "Warm up"
t=1
export t
echo "Warm up"
i=1
while test $i != X; do
t=111111111111111111111111111111111111111111111111111111111111111111111110$i
@ -14,10 +13,13 @@ while test $i != X; do
if test $i = 1111111111111111111111111111111111111111111113; then i=4; fi
if test $i = 1111111111111111111111111111111111111111111114; then i=X; fi
done
unset t i
memleak
echo "Measuring memory leak..."
t=1
export t
i=1
while test $i != X; do
t=111111111111111111111111111111111111111111111111111111111111111111111110$i
@ -30,6 +32,7 @@ while test $i != X; do
if test $i = 1111111111111111111111111111111111111111111113; then i=4; fi
if test $i = 1111111111111111111111111111111111111111111114; then i=X; fi
done
unset t i
memleak
kb=$?