From: Denis Vlasenko Date: Sun, 13 Apr 2008 17:45:56 +0000 (-0000) Subject: ash: add another testsuite entry ("leaking variables" bug) X-Git-Tag: 1_11_0~341 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d1ebecf65bd0af34bcfa2582c49e6810d7d4a35;p=oweals%2Fbusybox.git ash: add another testsuite entry ("leaking variables" bug) --- diff --git a/shell/ash_test/ash-vars/var_leak.right b/shell/ash_test/ash-vars/var_leak.right new file mode 100644 index 000000000..45c5458dd --- /dev/null +++ b/shell/ash_test/ash-vars/var_leak.right @@ -0,0 +1,2 @@ +should be empty: '' +should be empty: '' diff --git a/shell/ash_test/ash-vars/var_leak.tests b/shell/ash_test/ash-vars/var_leak.tests new file mode 100755 index 000000000..1b1123fb7 --- /dev/null +++ b/shell/ash_test/ash-vars/var_leak.tests @@ -0,0 +1,9 @@ +# This currently fails with CONFIG_FEATURE_SH_NOFORK=y +VAR='' +VAR=qwe true +echo "should be empty: '$VAR'" + +# This fails (always) +VAR='' +VAR=qwe exec 2>&1 +echo "should be empty: '$VAR'"