Changeset 103209 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Feb 5, 2024 6:08:08 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r103201 r103209 1626 1626 for sCurPath in asPaths: 1627 1627 reporter.log2('Checking for \"%s\" ...' % (sCurPath)); 1628 if self.oTstDrv.txsIsFile(oSession, oTxsSession,sCurPath, fIgnoreErrors = True):1629 return (True, sCurPath);1628 if oTxsSession.syncIsFile(sCurPath, fIgnoreErrors = True): 1629 return (True, oTxsSession.syncExpandString(sCurPath)); 1630 1630 reporter.error('Unable to find guest binary in any of these places:\n%s' % ('\n'.join(asPaths),)); 1631 1631 return (False, ""); … … 2388 2388 return reporter.error('oProcess is None! (%s)' % (asArgs,)); 2389 2389 2390 fRc = True; 2390 fRc = True; 2391 uExitStatus = vboxcon.ProcessStatus_Undefined; 2392 iExitCode = -1; 2393 cbStdOut = 0; 2394 cbStdErr = 0; 2395 sBufOut = ''; 2391 2396 2392 2397 #time.sleep(5); # try this if you want to see races here.
Note:
See TracChangeset
for help on using the changeset viewer.