source: MondoRescue/branches/2.2.9/mindi-busybox/shell/ash_test/ash-vars/var_leak.tests@ 3320

Last change on this file since 3320 was 3320, checked in by Bruno Cornec, 9 years ago
  • Re-add (thanks git BTW) the 2.2.9 branch which had been destroyed in the move to 3.0
  • Property svn:executable set to *
File size: 633 bytes
Line 
1# cat is an external program, variable should not leak out of it.
2# this currently fails with CONFIG_FEATURE_SH_NOFORK=y
3VAR=''
4VAR=val0 cat /dev/null
5echo "should be empty: '$VAR'"
6
7# true is a regular builtin, variable should not leak out of it.
8VAR=''
9VAR=val1 true
10echo "should be empty: '$VAR'"
11
12# ash follows the "special builtin leaks variables" rule here:
13# exec is a special builtin. (bash does not do it)
14VAR=''
15VAR=val2 exec 2>&1
16echo "should be not empty: '$VAR'"
17
18# ash follows the "function call is a special builtin" rule here
19# (bash does not do it)
20f() { true; }
21VAR=''
22VAR=val3 f
23echo "should be not empty: '$VAR'"
Note: See TracBrowser for help on using the repository browser.