Changeset 72231 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- May 17, 2018 10:55:16 AM (7 years ago)
- Location:
- trunk/src/VBox/ValidationKit/tests/serial
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/serial/loopback.py
r71988 r72231 120 120 def __init__(self, sLocation, iTimeout): 121 121 self.oConn = None; 122 self.oSock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM); 122 self.oSock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM); # pylint: disable=no-member 123 123 self.oSock.settimeout(iTimeout); 124 124 self.oSock.bind(sLocation); … … 160 160 """ 161 161 def __init__(self, sLocation, iTimeout): 162 self.oConn = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM); 162 self.oConn = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM); # pylint: disable=no-member 163 163 self.oConn.connect(sLocation); 164 164 self.oConn.settimeout(iTimeout); -
trunk/src/VBox/ValidationKit/tests/serial/tdSerial1.py
r72029 r72231 51 51 52 52 import loopback; 53 54 # Python 3 hacks: 55 if sys.version_info[0] >= 3: 56 xrange = range; # pylint: disable=redefined-builtin,invalid-name 57 53 58 54 59 class tdSerial1(vbox.TestDriver):
Note:
See TracChangeset
for help on using the changeset viewer.