diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-19 15:37:04 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-19 15:52:36 +0100 |
commit | 6aad1ddcc9d8fe2303cc444b6ddea2af1fc1dd30 (patch) | |
tree | fbcd71e78f202012724cf03c53a19ee60f76d8c7 /shell/hush_test/hush-vars | |
parent | 7c44b600f9b2ca545421cb88147275e1351ba81f (diff) |
hush: implement $LINENO bashism
function old new delta
run_pipe 1697 1774 +77
unset_local_var_len 258 301 +43
hush_main 1009 1051 +42
set_local_var 516 554 +38
parse_and_run_file 42 75 +33
i_getch 96 116 +20
.rodata 18858 18876 +18
done_command 106 122 +16
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 8/0 up/down: 287/0) Total: 287 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-vars')
-rw-r--r-- | shell/hush_test/hush-vars/var_LINENO1.right | 8 | ||||
-rwxr-xr-x | shell/hush_test/hush-vars/var_LINENO1.tests | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var_LINENO1.right b/shell/hush_test/hush-vars/var_LINENO1.right new file mode 100644 index 000000000..31e1a4478 --- /dev/null +++ b/shell/hush_test/hush-vars/var_LINENO1.right @@ -0,0 +1,8 @@ +2:2 +3:3 +4:4 +5:5 +2:2 +3:3 +4:4 +5:5 diff --git a/shell/hush_test/hush-vars/var_LINENO1.tests b/shell/hush_test/hush-vars/var_LINENO1.tests new file mode 100755 index 000000000..851b52cf5 --- /dev/null +++ b/shell/hush_test/hush-vars/var_LINENO1.tests @@ -0,0 +1,6 @@ +env | grep LINENO +echo 2:$LINENO +echo 3:$LINENO >&2 \ +| { sleep 0.1; echo 4:$LINENO; } +echo 5:$LINENO +test "$1" || . ./var_LINENO1.tests norepeat |