source: MondoRescue/branches/2.2.9/mindi-busybox/shell/ash_test/ash-vars/var1.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: 228 bytes
Line 
1# check that first assignment has proper effect on second one
2
3(
4a=a A=$a
5echo a=$a A=$A
6)
7(a=a A=$a; echo a=$a A=$A)
8(a=a A=$a echo a=$a A=$A)
9(a=a A=$a /bin/echo a=$a A=$A)
10
11f() { echo a=$a A=$A; }
12
13(a=a A=$a f)
14(a=a A=$a; f)
Note: See TracBrowser for help on using the repository browser.