Changeset 84949 in vbox
- Timestamp:
- Jun 25, 2020 12:20:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r84948 r84949 34 34 import sys; 35 35 import uuid; 36 if sys.version_info[0] >= 3:37 from io import StringIO as StringIO; # pylint: disable=import-error,no-name-in-module,useless-import-alias38 else:39 from StringIO import StringIO as StringIO; # pylint: disable=import-error,no-name-in-module,useless-import-alias40 36 41 37 # Only the main script needs to modify the path. … … 187 183 188 184 reporter.testStart('Waiting for TXS + CD'); 189 if oTestVm.isLinux(): 190 fRc, oTxsSession = self.txsRebootAndReconnectViaTcp(oSession, oTxsSession, fCdWait = True, 191 cMsCdWait = 5 * 60 * 1000, 192 sFileCdWait = self.sFileCdWait); 193 else: 194 oSession, oTxsSession = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = True, 195 cMsCdWait = 5 * 60 * 1000, 196 sFileCdWait = self.sFileCdWait); 185 oSession, oTxsSession = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = True, 186 cMsCdWait = 5 * 60 * 1000, 187 sFileCdWait = self.sFileCdWait); 197 188 reporter.testDone(); 198 189
Note:
See TracChangeset
for help on using the changeset viewer.