mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 21:54:26 +08:00
cc32b4f2a7
This is opt-in through a new feature flag "ampersand-nobg-in-token". When this flag and "qmark-noglob" are enabled, this command no longer needs quoting: curl https://example.com/thing?foo=bar&duran=duran Compared to the previous approach e1570a4 ("Let '&' only separate as the first char of a word"), this has some advantages: 1. "&&" and "&>" are no longer affected. They are still special, even if used between tokens without spaces, like "echo bar&>foo". Maybe this is not really *better*, but it avoids risking to annoy users by breaking the old variant. 2. "&" is still special if at the end of a token, like in "sleep 1&". Word movement is not affected by the semantics change, so Alt-F and friends still stop at every "&".
109 lines
2.9 KiB
Fish
109 lines
2.9 KiB
Fish
#RUN: %fish %s
|
|
status -b
|
|
and echo '"status -b" unexpectedly returned true at top level'
|
|
|
|
begin
|
|
status -b
|
|
or echo '"status -b" unexpectedly returned false inside a begin block'
|
|
end
|
|
|
|
status -l
|
|
and echo '"status -l" unexpectedly returned true for a non-login shell'
|
|
|
|
status -i
|
|
and echo '"status -i" unexpectedly returned true for a non-interactive shell'
|
|
|
|
status is-login
|
|
and echo '"status is-login" unexpectedly returned true for a non-login shell'
|
|
|
|
status is-interactive
|
|
and echo '"status is-interactive" unexpectedly returned true for a non-interactive shell'
|
|
|
|
# We should get an error message about an invalid combination of flags.
|
|
status --is-interactive --is-login
|
|
#CHECKERR: status: Invalid combination of options,
|
|
#CHECKERR: you cannot do both 'is-interactive' and 'is-login' in the same invocation
|
|
|
|
# We should get an error message about an unexpected arg for `status
|
|
# is-block`.
|
|
status -b is-interactive
|
|
#CHECKERR: status: Invalid combination of options,
|
|
#CHECKERR: you cannot do both 'is-block' and 'is-interactive' in the same invocation
|
|
|
|
# Try to set the job control to an invalid mode.
|
|
status job-control full1
|
|
#CHECKERR: status: Invalid job control mode 'full1'
|
|
status --job-control=1none
|
|
#CHECKERR: status: Invalid job control mode '1none'
|
|
|
|
# Now set it to a valid mode.
|
|
status job-control none
|
|
|
|
# Check status -u outside functions
|
|
status current-function
|
|
#CHECK: Not a function
|
|
|
|
function test_function
|
|
status current-function
|
|
end
|
|
|
|
test_function
|
|
#CHECK: test_function
|
|
eval test_function
|
|
#CHECK: test_function
|
|
|
|
# Future Feature Flags
|
|
status features
|
|
#CHECK: stderr-nocaret on 3.0 ^ no longer redirects stderr
|
|
#CHECK: qmark-noglob off 3.0 ? no longer globs
|
|
#CHECK: regex-easyesc off 3.1 string replace -r needs fewer \'s
|
|
#CHECK: ampersand-nobg-in-token off 3.4 & only backgrounds if followed by a separating character
|
|
status test-feature stderr-nocaret
|
|
echo $status
|
|
#CHECK: 0
|
|
status test-feature not-a-feature
|
|
echo $status
|
|
#CHECK: 2
|
|
|
|
# Ensure $status isn't reset before a function is executed
|
|
function echo_last
|
|
echo $status
|
|
end
|
|
|
|
false
|
|
echo_last
|
|
echo $status #1
|
|
#CHECK: 1
|
|
#CHECK: 0
|
|
|
|
# Verify that if swallows failure - see #1061
|
|
if false
|
|
end
|
|
echo $status
|
|
#CHECK: 0
|
|
|
|
# Verify errors from writes - see #7857.
|
|
if test -e /dev/full
|
|
# Failed writes to stdout produce 1.
|
|
echo foo > /dev/full
|
|
if test $status -ne 1
|
|
echo "Wrong status when writing to /dev/full"
|
|
end
|
|
|
|
# Here the builtin should fail with status 2,
|
|
# and also the write should fail with status 1.
|
|
# The builtin has precedence.
|
|
builtin string --not-a-valid-option 2> /dev/full
|
|
if test $status -ne 2
|
|
echo "Wrong status for failing builtin"
|
|
end
|
|
echo "Failed write tests finished"
|
|
else
|
|
echo "Failed write tests skipped"
|
|
echo "write: skipped" 1>&2
|
|
echo "write: skipped" 1>&2
|
|
end
|
|
# CHECK: Failed write tests {{finished|skipped}}
|
|
# CHECKERR: write: {{.*}}
|
|
# CHECKERR: write: {{.*}}
|