diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-11 13:17:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-11 13:17:30 +0100 |
commit | 1f1911239c0874d49a31d0ef2e618d0a1086a8df (patch) | |
tree | ebf78e950ff4cc7445ed7dfa9888a21c84c347af /shell/ash_test | |
parent | 932b9971d05d26e353f56bdd93daec3c9f764312 (diff) | |
download | busybox-1f1911239c0874d49a31d0ef2e618d0a1086a8df.tar.gz |
hush: fix handling of ^C in eval
function old new delta
run_list 1044 1259 +215
builtin_eval 45 126 +81
expand_strvec_to_string 91 - -91
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 2/0 up/down: 296/-91) Total: 205 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/ash-misc/control_char2.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/control_char2.tests | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/control_char2.right b/shell/ash_test/ash-misc/control_char2.right new file mode 100644 index 000000000..9498b420d --- /dev/null +++ b/shell/ash_test/ash-misc/control_char2.right @@ -0,0 +1,2 @@ + +Done:0 diff --git a/shell/ash_test/ash-misc/control_char2.tests b/shell/ash_test/ash-misc/control_char2.tests new file mode 100755 index 000000000..e77d7a1a6 --- /dev/null +++ b/shell/ash_test/ash-misc/control_char2.tests @@ -0,0 +1,3 @@ +c=`printf '\3'` +eval "echo $c" +echo Done:$? |