2021-09-28 23:15:33 +08:00
|
|
|
#RUN: %fish -C 'set -g fish %fish' %s
|
|
|
|
|
|
|
|
# A $status used as a command should not impact the location of other errors.
|
|
|
|
echo 'echo foo | exec grep # this exec is not allowed!
|
|
|
|
|
|
|
|
$status
|
|
|
|
|
|
|
|
# The error might be found here!' | $fish 2>| string replace -r '(.*)' '<$1>'
|
|
|
|
|
|
|
|
# CHECK: <fish: The 'exec' command can not be used in a pipeline>
|
|
|
|
# CHECK: <echo foo | exec grep # this exec is not allowed!>
|
2022-08-12 22:53:31 +08:00
|
|
|
# CHECK: < ^~~~~~~~^>
|
2021-09-28 23:59:59 +08:00
|
|
|
|
2022-04-01 07:14:59 +08:00
|
|
|
echo 'true | time false' | $fish 2>| string replace -r '(.*)' '<$1>'
|
|
|
|
# CHECK: <fish: The 'time' command may only be at the beginning of a pipeline>
|
|
|
|
# CHECK: <true | time false>
|
2022-08-12 22:53:31 +08:00
|
|
|
# CHECK: < ^~~~~~~~~^>
|
2022-04-01 07:14:59 +08:00
|
|
|
|
|
|
|
|
2021-09-28 23:59:59 +08:00
|
|
|
echo '
|
|
|
|
|
|
|
|
(true one)
|
|
|
|
(true two)
|
|
|
|
|
|
|
|
# more things
|
|
|
|
' | $fish 2>| string replace -r '(.*)' '<$1>'
|
|
|
|
|
|
|
|
# CHECK: <fish: Command substitutions not allowed>
|
|
|
|
# CHECK: <(true one)>
|
2022-08-11 23:22:03 +08:00
|
|
|
# CHECK: <^~~~~~~~~^>
|
2021-12-04 21:41:54 +08:00
|
|
|
|
|
|
|
$fish -c 'echo "unfinished "(subshell' 2>| string replace -r '.*' '<$0>'
|
|
|
|
# CHECK: <fish: Unexpected end of string, expecting ')'>
|
|
|
|
# CHECK: <echo "unfinished "(subshell>
|
|
|
|
# CHECK: < ^>
|
|
|
|
|
|
|
|
$fish -c 'echo "unfinished "$(subshell' 2>| string replace -r '.*' '<$0>'
|
|
|
|
# CHECK: <fish: Unexpected end of string, expecting ')'>
|
|
|
|
# CHECK: <echo "unfinished "$(subshell>
|
|
|
|
# CHECK: < ^>
|
2022-03-24 00:33:24 +08:00
|
|
|
|
2022-04-03 22:29:13 +08:00
|
|
|
$fish -c 'echo "ok $(echo still ok)syntax error: \x"' 2>| string replace -r '.*' '<$0>'
|
|
|
|
# CHECK: <fish: Invalid token '"ok $(echo still ok)syntax error: \x"'>
|
|
|
|
# CHECK: <echo "ok $(echo still ok)syntax error: \x">
|
2022-08-12 22:53:31 +08:00
|
|
|
# CHECK: < ^~~~~~~~~~~~~~~~^>
|
2022-04-03 22:29:13 +08:00
|
|
|
|
2022-07-24 23:51:26 +08:00
|
|
|
echo "function this_should_be_an_error" >$TMPDIR/this_should_be_an_error.fish
|
|
|
|
$fish -c "set -g fish_function_path $(string escape $TMPDIR); this_should_be_an_error"
|
|
|
|
# CHECKERR: ~/temp/this_should_be_an_error.fish (line 1): Missing end to balance this function definition
|
|
|
|
# CHECKERR: function this_should_be_an_error
|
2022-08-11 23:22:03 +08:00
|
|
|
# CHECKERR: ^~~~~~~^
|
2022-07-24 23:51:26 +08:00
|
|
|
# CHECKERR: from sourcing file ~/temp/this_should_be_an_error.fish
|
|
|
|
# CHECKERR: source: Error while reading file '{{.*}}/this_should_be_an_error.fish'
|
|
|
|
# CHECKERR: fish: Unknown command: this_should_be_an_error
|
2022-04-03 22:29:13 +08:00
|
|
|
# CHECKERR: fish:
|
2022-07-24 23:51:26 +08:00
|
|
|
# CHECKERR: set -g fish_function_path {{.*}}; this_should_be_an_error
|
2022-08-11 23:22:03 +08:00
|
|
|
# CHECKERR: ^~~~~~~~~~~~~~~~~~~~~~^
|