mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
8bf8b10f68
See the changelog additions for user-visible changes. Since we enable/disable terminal protocols whenever we pass terminal ownership, tests can no longer run in parallel on the same terminal. For the same reason, readline shortcuts in the gdb REPL will not work anymore. As a remedy, use gdbserver, or lobby for CSI u support in libreadline. Add sleep to some tests, otherwise they fall (both in CI and locally). There are two weird failures on FreeBSD remaining, disable them for now https://github.com/fish-shell/fish-shell/pull/10359/checks?check_run_id=23330096362 Design and implementation borrows heavily from Kakoune. In future, we should try to implement more of the kitty progressive enhancements. Closes #10359
28 lines
796 B
Fish
28 lines
796 B
Fish
# RUN: %fish %s | %filter-ctrlseqs
|
|
|
|
# Verify the correct behavior of the `setenv` compatibility shim.
|
|
|
|
# No args to `setenv` should emit the current set of env vars. The first two
|
|
# commands verify that `setenv` does not report non-env vars.
|
|
set -g setenv1 abc
|
|
setenv | grep '^setenv1=$'
|
|
set -gx setenv1 xyz
|
|
setenv | grep '^setenv1=xyz$'
|
|
# CHECK: setenv1=xyz
|
|
|
|
# A single arg should set and export the named var to nothing.
|
|
setenv setenv2
|
|
env | grep '^setenv2=$'
|
|
# CHECK: setenv2=
|
|
|
|
# Three or more args should be an error.
|
|
echo too many arguments test >&2
|
|
setenv var hello you
|
|
# CHECKERR: too many arguments test
|
|
# CHECKERR: setenv: Too many arguments
|
|
|
|
|
|
# Two args should set the named var to the second arg
|
|
setenv setenv3 'hello you'
|
|
setenv | grep '^setenv3=hello you'
|
|
# CHECK: setenv3=hello you
|