2019-10-08 03:21:38 +08:00
|
|
|
#RUN: %fish %s
|
|
|
|
function t --argument-names a b c
|
|
|
|
echo t
|
|
|
|
end
|
2020-02-08 03:40:25 +08:00
|
|
|
|
|
|
|
set -g foo 'global foo'
|
|
|
|
set -l foo 'local foo'
|
|
|
|
set bar one 'two 2' \t '' 3
|
|
|
|
set baz
|
|
|
|
function frob -V foo -V bar -V baz
|
|
|
|
set --show foo bar baz
|
|
|
|
end
|
|
|
|
|
|
|
|
frob
|
|
|
|
#CHECK: $foo: set in local scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $foo[1]: |local foo|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $foo: set in global scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $foo[1]: |global foo|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $bar: set in local scope, unexported, with 5 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $bar[1]: |one|
|
|
|
|
#CHECK: $bar[2]: |two 2|
|
|
|
|
#CHECK: $bar[3]: |\t|
|
|
|
|
#CHECK: $bar[4]: ||
|
|
|
|
#CHECK: $bar[5]: |3|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $bar: set in global scope, unexported, with 5 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $bar[1]: |one|
|
|
|
|
#CHECK: $bar[2]: |two 2|
|
|
|
|
#CHECK: $bar[3]: |\t|
|
|
|
|
#CHECK: $bar[4]: ||
|
|
|
|
#CHECK: $bar[5]: |3|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $baz: set in local scope, unexported, with 0 elements
|
|
|
|
#CHECK: $baz: set in global scope, unexported, with 0 elements
|
|
|
|
|
|
|
|
set foo 'bad foo'
|
|
|
|
set bar 'bad bar'
|
|
|
|
set baz 'bad baz'
|
|
|
|
frob
|
|
|
|
#CHECK: $foo: set in local scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $foo[1]: |local foo|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $foo: set in global scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $foo[1]: |global foo|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $bar: set in local scope, unexported, with 5 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $bar[1]: |one|
|
|
|
|
#CHECK: $bar[2]: |two 2|
|
|
|
|
#CHECK: $bar[3]: |\t|
|
|
|
|
#CHECK: $bar[4]: ||
|
|
|
|
#CHECK: $bar[5]: |3|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $bar: set in global scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $bar[1]: |bad bar|
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: $baz: set in local scope, unexported, with 0 elements
|
|
|
|
#CHECK: $baz: set in global scope, unexported, with 1 elements
|
2020-04-26 00:33:47 +08:00
|
|
|
#CHECK: $baz[1]: |bad baz|
|
2020-02-08 03:40:25 +08:00
|
|
|
|
|
|
|
# This sequence of tests originally verified that functions `name2` and
|
|
|
|
# `name4` were created. See issue #2068. That behavior is not what we want.
|
|
|
|
# The function name must always be the first argument of the `function`
|
|
|
|
# command. See issue #2827.
|
|
|
|
function name1 -a arg1 arg2
|
|
|
|
echo hello
|
|
|
|
end
|
2020-03-10 02:44:41 +08:00
|
|
|
function -a arg1 arg2 name2
|
|
|
|
end
|
2021-11-04 13:52:17 +08:00
|
|
|
#CHECKERR: {{.*}}checks/function.fish (line {{\d+}}): function: -a: invalid function name
|
2020-03-10 02:44:41 +08:00
|
|
|
#CHECKERR: function -a arg1 arg2 name2
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECKERR: ^
|
2020-03-10 02:44:41 +08:00
|
|
|
function name3 --argument-names arg1 arg2
|
|
|
|
echo hello
|
|
|
|
echo goodbye
|
|
|
|
end
|
|
|
|
function --argument-names arg1 arg2 name4
|
|
|
|
end
|
2021-11-04 13:52:17 +08:00
|
|
|
#CHECKERR: {{.*}}checks/function.fish (line {{\d+}}): function: --argument-names: invalid function name
|
2020-03-10 02:44:41 +08:00
|
|
|
#CHECKERR: function --argument-names arg1 arg2 name4
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECKERR: ^
|
2020-03-10 02:44:41 +08:00
|
|
|
function name5 abc --argument-names def
|
|
|
|
end
|
2021-11-04 13:52:17 +08:00
|
|
|
#CHECKERR: {{.*}}checks/function.fish (line {{\d+}}): function: abc: unexpected positional argument
|
2020-03-10 02:44:41 +08:00
|
|
|
#CHECKERR: function name5 abc --argument-names def
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECKERR: ^
|
|
|
|
functions -q name1; and echo "Function name1 found"
|
|
|
|
functions -q name2; or echo "Function name2 not found as expected"
|
|
|
|
functions -q name3; and echo "Function name3 found"
|
|
|
|
functions -q name4; or echo "Function name4 not found as expected"
|
|
|
|
#CHECK: Function name1 found
|
|
|
|
#CHECK: Function name2 not found as expected
|
|
|
|
#CHECK: Function name3 found
|
|
|
|
#CHECK: Function name4 not found as expected
|
|
|
|
|
|
|
|
functions -c name1 name1a
|
|
|
|
functions --copy name3 name3a
|
|
|
|
functions -q name1a
|
|
|
|
or echo "Function name1a not found as expected"
|
|
|
|
functions -q name3a
|
|
|
|
or echo "Function name3a not found as expected"
|
|
|
|
|
|
|
|
# Poor man's diff because on some systems diff defaults to unified output, but that prints filenames.
|
|
|
|
#
|
|
|
|
set -l name1 (functions name1)
|
|
|
|
set -l name1a (functions name1a)
|
|
|
|
set -l name3 (functions name3)
|
|
|
|
set -l name3a (functions name3a)
|
|
|
|
# First line for the non-copied function is "# Defined in checks/function.fish" - skip it to work around #6575.
|
2020-12-12 06:05:22 +08:00
|
|
|
test "$name1[3..-1]" = "$name1a[3..-1]"; and echo "1 = 1a"
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: 1 = 1a
|
2020-12-12 06:05:22 +08:00
|
|
|
test "$name3[3..-1]" = "$name3a[3..-1]"; and echo "3 = 3a"
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: 3 = 3a
|
|
|
|
|
2020-03-10 02:44:41 +08:00
|
|
|
function test
|
|
|
|
echo banana
|
|
|
|
end
|
2021-11-04 13:52:17 +08:00
|
|
|
#CHECKERR: {{.*}}checks/function.fish (line {{\d+}}): function: test: cannot use reserved keyword as function name
|
2020-03-10 02:44:41 +08:00
|
|
|
#CHECKERR: function test
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECKERR: ^
|
|
|
|
|
2020-03-10 02:44:41 +08:00
|
|
|
functions -q; or echo False
|
2020-02-08 03:40:25 +08:00
|
|
|
#CHECK: False
|
|
|
|
exit 0
|