$ sleep 20 &
$ jobs
Job Group CPU State Command
1 1086663 0% running sleep 20 &
$ kill -SIGSTOP %1
Job 1, 'sleep 50 &' has stopped
$ jobs
Job Group CPU State Command
1 1086663 0% stopped sleep 20 &
$ kill -SIGCONT %1
$ jobs
Job Group CPU State Command
1 1086663 0% stopped sleep 20 &
The last output is wrong, it should say "running".
Happens on master, 3.1.0, and 3.0.2.
The last output is wrong, it should say "running".
Happens on master, 3.1.0, and 3.0.2.