Changeset 77615 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Mar 8, 2019 10:51:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r77613 r77615 2150 2150 return (fRc, oTxsSession); 2151 2151 2152 def threadForTestGuestCtrlSessionReboot(self, o Session, oTxsSession, oGuestProcess):2152 def threadForTestGuestCtrlSessionReboot(self, oGuestProcess): 2153 2153 """ 2154 2154 Thread routine which waits for the stale guest process getting terminated (or some error) … … 2165 2165 reporter.error('Got wrong stale process result: waitResult is %d, current process status is: %d' \ 2166 2166 % (waitResult, oGuestProcess.status)); 2167 fRc = False;2168 2167 2169 2168 def testGuestCtrlSessionReboot(self, oSession, oTxsSession, oTestVm): # pylint: disable=R0914 … … 2222 2221 reporter.log('Creating reboot thread ...'); 2223 2222 oThreadReboot = threading.Thread(target = self.threadForTestGuestCtrlSessionReboot, 2224 args=(oSession, oTxsSession, oGuestProcess), name=('threadForTestGuestCtrlSessionReboot')); 2223 args=(oGuestProcess), 2224 name=('threadForTestGuestCtrlSessionReboot')); 2225 2225 oThreadReboot.setDaemon(True); 2226 2226 oThreadReboot.start();
Note:
See TracChangeset
for help on using the changeset viewer.