Beispiel #1
0
 def waitTestSuccess(self, current):
     if not self.process:
         return
     sys.stdout.write("waiting for " + self.name + " to terminate... ")
     sys.stdout.flush()
     self.process.waitTestSuccess()
     self.process = None
     try:
         current.adapter.remove(current.id)
     except:
         pass
     # Stop the WatchDog thread since we may not run any more tests
     # for an extended period of time
     TestUtil.stopWatchDog()
     print("ok")