Changeset 66971 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- May 19, 2017 11:24:07 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115515
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r66964 r66971 2514 2514 if rc < 0: 2515 2515 self.waitOnDirectSessionClose(oVM, 5000); 2516 # VM failed to power up, still collect VBox.log 2517 oSession.addLogsToReport(); 2516 2517 # VM failed to power up, still collect VBox.log, need to wrap the session object 2518 # in order to use the helper for adding the log files to the report. 2519 from testdriver.vboxwrappers import SessionWrapper; 2520 oTmp = SessionWrapper(oSession, oVM, self.oVBox, self.oVBoxMgr, self, True, sName, sLogFile); 2521 oTmp.addLogsToReport(); 2518 2522 try: 2519 2523 if oSession is not None:
Note:
See TracChangeset
for help on using the changeset viewer.