Пример #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
Пример #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)
Пример #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)
Пример #4
0
 def __init__(self, options, testId):
     Broadcast.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.msgReceived = False
Пример #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)
Пример #6
0
 def __init__(self, options, testId):
     Broadcast.__init__(self)
     TesteeTest.__init__(self, options, testId)
     self.parseOptions()
     self.msgReceived = False