diff options
author | Denys Vlasenko | 2021-07-27 04:20:32 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-07-27 04:20:32 +0200 |
commit | c450437a4e631378cd6a2dc06a5923ce811a950d (patch) | |
tree | 448ad0b6599a5365dedd8f78960957a722c0aecb /shell/hush_test/hush-psubst/falsetick.tests | |
parent | 8dd676c6c3b862846a4a215f5f3a8822fcf8c569 (diff) | |
download | busybox-c450437a4e631378cd6a2dc06a5923ce811a950d.zip busybox-c450437a4e631378cd6a2dc06a5923ce811a950d.tar.gz |
shell: update psubst testcases
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-psubst/falsetick.tests')
-rwxr-xr-x | shell/hush_test/hush-psubst/falsetick.tests | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/hush_test/hush-psubst/falsetick.tests b/shell/hush_test/hush-psubst/falsetick.tests index 44d2eae..d2b9369 100755 --- a/shell/hush_test/hush-psubst/falsetick.tests +++ b/shell/hush_test/hush-psubst/falsetick.tests @@ -17,6 +17,3 @@ true; a=`exit 2` >/does/not/exist; echo $? false; a=`exit 2` >/does/not/exist; echo $? true; a=$(exit 2) >/does/not/exist; echo $? false; a=$(exit 2) >/does/not/exist; echo $? -# ...and assignment still happens despite redirect error: -true; a=$(echo b) >/does/not/exist; echo $? -echo "Done: a=$a" |