Exemplo n.º 1
0
 def __init__(self, options, testId):
     Ping.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.msgReceived = False
     self.msgSent = False
     self.success = False
Exemplo n.º 2
0
 def __init__(self, options, testId):
     Iperf.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.process = None
     self.cmd = self.iperfCmd.format(exec = self._EXEC,
                                     proto = self.P_UDP if self.options.protocol == self.PROTO_UDP else self.P_TCP,
                                     port = self.options.port,
                                     mode = self._SERVER_MODE)
Exemplo n.º 3
0
 def __init__(self, options, testId):
     Iperf.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.process = None
     self.cmd = self.iperfCmd.format(
         exec=self._EXEC,
         proto=self.P_UDP
         if self.options.protocol == self.PROTO_UDP else self.P_TCP,
         port=self.options.port,
         mode=self._SERVER_MODE)
Exemplo n.º 4
0
 def __init__(self, options, testId):
     Broadcast.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.msgReceived = False
Exemplo n.º 5
0
 def __init__(self, options, testId):
     Igi.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.process = None
     self.cmd = self.srvCmd.format(exec = self._EXEC)
Exemplo n.º 6
0
 def __init__(self, options, testId):
     Broadcast.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.msgReceived = False