Changeset 70731 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jan 24, 2018 6:28:12 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120486
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/smoketests/tdExoticOrAncient1.py
r70695 r70731 102 102 self.logVmInfo(oVM); 103 103 if oTestVm.fGrouping & self.oTestVmManager.kfGrpNoTxs: 104 pass; ## @todo serial port VMs. 105 else: 106 oSession, _ = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = True); 107 if oSession is not None: 108 self.terminateVmBySession(oSession) 109 return True; 110 return None; 104 sResult = self.runVmAndMonitorComRawFile(oTestVm.sVmName, oTestVm.sCom1RawFile); 105 return sResult == 'PASSED'; 106 oSession, _ = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = True); 107 if oSession is not None: 108 return self.terminateVmBySession(oSession); 109 return False; 111 110 112 111 if __name__ == '__main__':
Note:
See TracChangeset
for help on using the changeset viewer.