Changeset 70797 in vbox
- Timestamp:
- Jan 29, 2018 6:04:20 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/serial/loopback.py
r70796 r70797 170 170 self.oThread.start(); 171 171 elif sType == g_ksLoopbackNamedPipeServ: 172 self.oIoPumper = SerialLoopbackNamedPipeServ(sLocation, 0.5); 172 self.oIoPumper = SerialLoopbackNamedPipeServ(sLocation, 0.5); # pylint: disable=R0204 173 173 self.oThread.start(); 174 174 … … 182 182 self.oIoPumper = SerialLoopbackTcpClient(self.sLocation, 0.5); 183 183 elif self.sType == g_ksLoopbackNamedPipeClient: 184 self.oIoPumper = SerialLoopbackNamedPipeClient(self.sLocation, 0.5); 184 self.oIoPumper = SerialLoopbackNamedPipeClient(self.sLocation, 0.5); # pylint: disable=R0204 185 185 except: 186 186 fRc = False;
Note:
See TracChangeset
for help on using the changeset viewer.