mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 03:51:23 +08:00
3255999794
We have no idea why this was even a thing. For now simply set it to "all"/"full" (why these two names? no idea) at startup and allow changing it later. Settting it *immediately* when defining the variable sets it too soon because we don't have the interactive signal handlers enabled (including the one for SIGTTOU), so let's first settle for this little piece of awkwardness. This needs widespread testing, so we merge it early, immediately after the release. Fixes #5036 Fixes #5832 Fixes #7721 (and probably numerous others)
130 lines
2.9 KiB
Fish
130 lines
2.9 KiB
Fish
#RUN: %fish %s
|
|
|
|
# Ensure there's no zombies before we start, otherwise the tests will mysteriously fail.
|
|
set zombies_among_us (ps -o stat | string match 'Z*' | count)
|
|
[ "$zombies_among_us" -eq "0" ]
|
|
or begin
|
|
echo "Found existing zombie processes. Clean up zombies before running this test."
|
|
exit 1
|
|
end
|
|
echo "All clear of zombies."
|
|
# CHECK: All clear of zombies.
|
|
|
|
# Verify zombies are not left by disown (#7183, #5342)
|
|
# Do this first to avoid colliding with the other disowned processes below, which may
|
|
# still be running at the end of the script
|
|
sleep 0.2 &
|
|
disown
|
|
sleep 0.2
|
|
echo Trigger process reaping
|
|
sleep 0.1
|
|
#CHECK: Trigger process reaping
|
|
# The initial approach here was to kill the PID of the sleep process, which should
|
|
# be gone by the time we get here. Unfortunately, kill from procps on pre-2016 distributions
|
|
# does not print an error for non-existent PIDs, so instead look for zombies in this session
|
|
# (there should be none).
|
|
ps -o stat | string match 'Z*'
|
|
|
|
jobs -q
|
|
echo $status
|
|
#CHECK: 1
|
|
sleep 5 &
|
|
sleep 5 &
|
|
jobs -c
|
|
#CHECK: Command
|
|
#CHECK: sleep
|
|
#CHECK: sleep
|
|
jobs -q
|
|
echo $status
|
|
#CHECK: 0
|
|
bg -23 1 2>/dev/null
|
|
or echo bg: invalid option -23 >&2
|
|
#CHECKERR: bg: invalid option -23
|
|
fg 3
|
|
#CHECKERR: fg: No suitable job: 3
|
|
bg 3
|
|
#CHECKERR: bg: Could not find job '3'
|
|
sleep 1 &
|
|
disown
|
|
jobs -c
|
|
#CHECK: Command
|
|
#CHECK: sleep
|
|
#CHECK: sleep
|
|
jobs 1
|
|
echo $status
|
|
#CHECK: 1
|
|
#CHECKERR: jobs: No suitable job: 1
|
|
jobs foo
|
|
echo $status
|
|
#CHECK: 2
|
|
#CHECKERR: jobs: 'foo' is not a valid process id
|
|
jobs -q 1
|
|
echo $status
|
|
#CHECK: 1
|
|
jobs -q foo
|
|
echo $status
|
|
#CHECK: 2
|
|
#CHECKERR: jobs: 'foo' is not a valid process id
|
|
disown foo
|
|
#CHECKERR: disown: 'foo' is not a valid job specifier
|
|
disown (jobs -p)
|
|
or exit 0
|
|
|
|
# Verify `jobs` output within a function lists background jobs
|
|
# https://github.com/fish-shell/fish-shell/issues/5824
|
|
function foo
|
|
sleep 0.2 &
|
|
jobs -c
|
|
end
|
|
foo
|
|
|
|
# Verify we observe job exit events
|
|
sleep 1 &
|
|
set sleep_job $last_pid
|
|
function sleep_done_$sleep_job --on-job-exit $sleep_job
|
|
/bin/echo "sleep is done"
|
|
functions --erase sleep_done_$sleep_job
|
|
end
|
|
sleep 2
|
|
|
|
# Verify `jobs -l` works and returns the right status codes
|
|
# https://github.com/fish-shell/fish-shell/issues/6104
|
|
jobs --last --command
|
|
echo $status
|
|
#CHECK: Command
|
|
#CHECK: sleep
|
|
#CHECK: sleep is done
|
|
#CHECK: 1
|
|
sleep 0.2 &
|
|
jobs -lc
|
|
echo $status
|
|
#CHECK: Command
|
|
#CHECK: sleep
|
|
#CHECK: 0
|
|
|
|
function foo
|
|
function caller --on-job-exit caller
|
|
echo caller
|
|
end
|
|
echo foo
|
|
end
|
|
|
|
function bar --on-event bar
|
|
echo (foo)
|
|
end
|
|
|
|
emit bar
|
|
#CHECK: foo
|
|
#CHECK: caller
|
|
# Since we are in a script context, this would not trigger "job control"
|
|
# if it was set to "interactive"
|
|
status is-full-job-control
|
|
and echo is full job control
|
|
#CHECK: is full job control
|
|
|
|
# We can't rely on a *specific* pgid being assigned,
|
|
# but we can rely on it not being fish's.
|
|
command true &
|
|
set -l truepid $last_pid
|
|
test $truepid != $fish_pid || echo true has same pid as fish
|