diff options
author | Denys Vlasenko | 2023-07-04 14:35:41 +0200 |
---|---|---|
committer | Denys Vlasenko | 2023-07-04 14:38:25 +0200 |
commit | 07a95cfcabb0706a22599b4440b495b6cfa8123e (patch) | |
tree | ee074cb7517d0d2673fb3563cbd19ed4f8e5ed40 /shell/hush_test | |
parent | e5692e2342c68092ee3d4d895ea847cf7d13fa57 (diff) | |
download | busybox-07a95cfcabb0706a22599b4440b495b6cfa8123e.zip busybox-07a95cfcabb0706a22599b4440b495b6cfa8123e.tar.gz |
ash: disable check for "good" function name, bash does not check this
function old new delta
.rodata 105304 105261 -43
parse_command 1696 1633 -63
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-106) Total: -106 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-vars/readonly0.right | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush_test/hush-vars/readonly0.right b/shell/hush_test/hush-vars/readonly0.right index 8b750eb..7599698 100644 --- a/shell/hush_test/hush-vars/readonly0.right +++ b/shell/hush_test/hush-vars/readonly0.right @@ -1,5 +1,5 @@ -readonly a=A -readonly b=B +readonly a='A' +readonly b='B' Ok:0 hush: a=A: readonly variable |