Skip to content

Commit

Permalink
Elaborate job-y.tst test case
Browse files Browse the repository at this point in the history
  • Loading branch information
magicant committed Sep 1, 2024
1 parent 4b25922 commit 75d0ddf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/job-y.tst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# job-y.tst: yash-specific test of job control
../checkfg || skip="true" # %REQUIRETTY%

# This test case first creates a background job that immediately exits, then
# waits for the job to finish, sending a null signal to the job to poll if the
# job is still running. A subshell starts another job and waits for it to finish
# to make sure the main shell process receives the SIGCHLD signal and examines
# the latest job status. The test case checks if the job is reported as done
# before the prompt for the next line is displayed.
test_e 'interactive shell reports job status before prompt' -im
echo >&2; sleep 0& while kill -0 $! 2>/dev/null; do :; done; (sleep 0& wait)
echo done >&2; exit
__IN__
$
[1] + Done sleep 0
$ done
__ERR__

mkfifo sync

# According to POSIX, a shell may, but is not required to, forget the job
Expand Down

0 comments on commit 75d0ddf

Please sign in to comment.