diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 21:13:13 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 21:13:13 +0200 |
commit | db7f4c203b6571f39774102fc653d5e619b26c50 (patch) | |
tree | ea9e72b279ab65c79270bf6a779069be7352d3e2 /shell/hush_test/hush-vars/var5.tests | |
parent | 61508d9624703f2d0da8776e6a5e2333eadd5be9 (diff) |
hush: add var4.tests, var5.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-vars/var5.tests')
-rwxr-xr-x | shell/hush_test/hush-vars/var5.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var5.tests b/shell/hush_test/hush-vars/var5.tests new file mode 100755 index 000000000..802e489bd --- /dev/null +++ b/shell/hush_test/hush-vars/var5.tests @@ -0,0 +1,14 @@ +# check that first assignment has proper effect on second one + +( +a=a A=$a +echo a=$a A=$A +) +(a=a A=$a; echo a=$a A=$A) +(a=a A=$a echo a=$a A=$A) +(a=a A=$a /bin/echo a=$a A=$A) + +f() { echo a=$a A=$A; } + +(a=a A=$a f) +(a=a A=$a; f) |