On 6-6-14 13:44:51 bruce wrote:
> However, if I change the running to be -- foo.php & so the test runs
> as a background process, the process gets listed as "Stopped" "T" in
> the status of the procTBL.

T means the process received a SIGSTOP signal.  Send the process a
SIGCONT signal, then a SIGTERM signal:

    kill -CONT <pid>
    kill <pid>

-- 
Garry T. Williams

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to