From: Denis Vlasenko Date: Sun, 26 Apr 2009 23:25:36 +0000 (-0000) Subject: make leak test more robust by unsetting all vars X-Git-Tag: 1_15_0~274 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=42e4af3119191ee822dbb0e7fdae94d4993fd0a2;p=oweals%2Fbusybox.git make leak test more robust by unsetting all vars --- diff --git a/shell/hush_test/hush-z_slow/leak_var2.tests b/shell/hush_test/hush-z_slow/leak_var2.tests index 0ab131552..611666cad 100755 --- a/shell/hush_test/hush-z_slow/leak_var2.tests +++ b/shell/hush_test/hush-z_slow/leak_var2.tests @@ -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=$?