Tests to show problem with wxExecute when using redirection on a GUI app.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-04-20 00:38:16 +00:00
parent 8ab7390901
commit 84d31cc23f
2 changed files with 117 additions and 0 deletions

36
wxPython/tests/runner.py Normal file
View File

@@ -0,0 +1,36 @@
from wxPython.wx import *
import sys, time
class WaitingProcess(wxProcess):
def __init__(self):
wxProcess.__init__(self, None)
self.terminated = false
def OnTerminate(self, pid, status):
print pid, status
self.terminated = true
def wait(self):
while not self.terminated:
stream = self.GetInputStream()
if not stream.eof():
sys.stdout.write(stream.read())
stream = self.GetErrorStream()
if not stream.eof():
sys.stderr.write(stream.read())
wxYield()
try:
#raw_input("ready...")
if 1:
process = WaitingProcess()
process.Redirect()
pid = wxExecute('python -u wxFrame1.py', false, process)
process.wait()
else:
wxExecute('python -u wxFrame1.py')
finally:
#raw_input("done...")
pass