mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 23:46:30 +08: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
99 lines
1.6 KiB
Fish
99 lines
1.6 KiB
Fish
# RUN: %fish -C 'set -g fish %fish' %s | %filter-ctrlseqs
|
|
# Test the umask command. In particular the symbolic modes since they've been
|
|
# broken for four years (see issue #738) at the time I added these tests.
|
|
|
|
# Establish a base line umask.
|
|
umask 027
|
|
umask
|
|
echo umask var = $umask
|
|
umask -S
|
|
#CHECK: 0027
|
|
#CHECK: umask var = 0027
|
|
#CHECK: u=rwx,g=rx,o=
|
|
|
|
# Verify that an invalid umask is rejected
|
|
umask 1234
|
|
umask 228
|
|
umask 0282
|
|
#CHECKERR: umask: Invalid mask '1234'
|
|
#CHECKERR: umask: Invalid mask '228'
|
|
#CHECKERR: umask: Invalid mask '0282'
|
|
|
|
# Verify that symbolic modifications and output is correct.
|
|
#
|
|
# When I wrote these tests I based all of the results on the behavior of bash
|
|
# when executing identical commands. So if bash has a bug with the umask
|
|
# command it's possible fish will as well. However, I did verify the result of
|
|
# each interaction and did not find any bugs in how bash or fish handled these
|
|
# scenarios.
|
|
#
|
|
umask 0777
|
|
umask a-r
|
|
umask
|
|
umask -S
|
|
#CHECK: 0777
|
|
#CHECK: u=,g=,o=
|
|
|
|
umask 0777
|
|
umask u+x
|
|
umask
|
|
umask -S
|
|
#CHECK: 0677
|
|
#CHECK: u=x,g=,o=
|
|
|
|
umask 777
|
|
umask g+rwx,o+x
|
|
umask
|
|
umask -S
|
|
#CHECK: 0706
|
|
#CHECK: u=,g=rwx,o=x
|
|
|
|
umask 0
|
|
umask u-w,o-x
|
|
umask
|
|
umask -S
|
|
#CHECK: 0201
|
|
#CHECK: u=rx,g=rwx,o=rw
|
|
|
|
umask 0
|
|
umask a-r
|
|
umask
|
|
umask -S
|
|
#CHECK: 0444
|
|
#CHECK: u=wx,g=wx,o=wx
|
|
|
|
umask 0
|
|
umask ug-rx
|
|
umask
|
|
umask -S
|
|
#CHECK: 0550
|
|
#CHECK: u=w,g=w,o=rwx
|
|
|
|
umask 777
|
|
umask u+r,g+w,o=rw
|
|
umask
|
|
umask -S
|
|
#CHECK: 0351
|
|
#CHECK: u=r,g=w,o=rw
|
|
|
|
umask 777
|
|
umask =r,g+w,o+x,o-r
|
|
umask
|
|
umask -S
|
|
#CHECK: 0316
|
|
#CHECK: u=r,g=rw,o=x
|
|
|
|
umask 0
|
|
umask rx
|
|
umask
|
|
umask -S
|
|
#CHECK: 0222
|
|
#CHECK: u=rx,g=rx,o=rx
|
|
|
|
umask u=rwx,g=rwx,o=
|
|
umask
|
|
#CHECK: 0007
|
|
umask u=rwx,g=,o=rwx
|
|
umask
|
|
#CHECK: 0070
|