You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
$ 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 text was updated successfully, but these errors were encountered:
The last output is wrong, it should say "running".
Happens on master, 3.1.0, and 3.0.2.
The text was updated successfully, but these errors were encountered: