mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-26 23:38:35 +00:00
29 lines
752 B
Python
29 lines
752 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import unittest
|
|
import proctest
|
|
from mozprocess import processhandler
|
|
|
|
here = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
class ProcTestMisc(proctest.ProcTest):
|
|
""" Class to test misc operations """
|
|
|
|
def test_process_output_twice(self):
|
|
"""
|
|
Process is started, then processOutput is called a second time explicitly
|
|
"""
|
|
p = processhandler.ProcessHandler([self.python, self.proclaunch,
|
|
"process_waittimeout_10s_python.ini"],
|
|
cwd=here)
|
|
|
|
p.run()
|
|
p.processOutput(timeout=5)
|
|
p.wait()
|
|
|
|
self.determine_status(p, False, ())
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|