-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
bugSomething that's not working as intendedSomething that's not working as intended
Milestone
Description
$ 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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething that's not working as intendedSomething that's not working as intended