diff options
author | Denys Vlasenko | 2021-09-07 18:01:49 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-09-07 18:01:49 +0200 |
commit | d6c9cbc0727cc3875672ae280ec129514a9d8594 (patch) | |
tree | d402b52d331c23cf41b43e628b3ac59e742a7ff0 /shell/ash_test/ash-vars/var_LINENO2.tests | |
parent | 0d7dfa9012d01159c371bf041bf53afe0780df9f (diff) | |
download | busybox-d6c9cbc0727cc3875672ae280ec129514a9d8594.zip busybox-d6c9cbc0727cc3875672ae280ec129514a9d8594.tar.gz |
ash: fix LINENO in functions
From larger patch by Roberto A. Foglietta <roberto.foglietta@gmail.com>
function old new delta
evalfun 348 369 +21
ash_main 1202 1218 +16
setinputstring 65 73 +8
lookupvar 116 106 -10
evaltree 772 753 -19
evalsubshell 192 173 -19
evalfor 175 156 -19
evalcase 273 254 -19
evalcommand 1560 1536 -24
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/6 up/down: 45/-110) Total: -65 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-vars/var_LINENO2.tests')
-rwxr-xr-x | shell/ash_test/ash-vars/var_LINENO2.tests | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/ash_test/ash-vars/var_LINENO2.tests b/shell/ash_test/ash-vars/var_LINENO2.tests new file mode 100755 index 0000000..7036dbd --- /dev/null +++ b/shell/ash_test/ash-vars/var_LINENO2.tests @@ -0,0 +1,8 @@ +#skip lines: make "line number within function" differ from overall line number +#skip lines +f() { + echo "In function: LINENO=$LINENO" +} +echo "Start LINENO=$LINENO, calling function" +f +echo "After function: LINENO=$LINENO" |