diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-29 01:44:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-29 01:44:17 +0200 |
commit | 78c9c736ab13caec3f6c1032e39200fed5580f50 (patch) | |
tree | 0a737fa0bfa652d12afed0613afafb5dcdcde450 /shell/hush_test/hush-misc | |
parent | 992e0ff7e9a71a85a89d4fb7b4e6ace7ba74e2ba (diff) | |
download | busybox-78c9c736ab13caec3f6c1032e39200fed5580f50.tar.gz |
hush: fix 'eval ""' handling
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-misc')
-rw-r--r-- | shell/hush_test/hush-misc/eval2.right | 3 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/eval2.tests | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/eval2.right b/shell/hush_test/hush-misc/eval2.right new file mode 100644 index 000000000..a7ce6ccc7 --- /dev/null +++ b/shell/hush_test/hush-misc/eval2.right @@ -0,0 +1,3 @@ +Zero:0 +Zero:0 +Zero:0 diff --git a/shell/hush_test/hush-misc/eval2.tests b/shell/hush_test/hush-misc/eval2.tests new file mode 100755 index 000000000..6bfb87aa7 --- /dev/null +++ b/shell/hush_test/hush-misc/eval2.tests @@ -0,0 +1,4 @@ +false; eval; echo Zero:$? +false; eval ""; echo Zero:$? +false; eval " +"; echo Zero:$? |