Changeset 93795 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Feb 16, 2022 3:39:52 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r93793 r93795 2885 2885 # hanging around forever. This can happen if the installed Guest Additions 2886 2886 # do not support terminating guest processes. 2887 try: 2888 reporter.log('Waiting for blocking process #%d getting started...' % (i)); 2889 eWaitResult = oProcess.waitForArray([ vboxcon.ProcessWaitForFlag_Start, ], 30 * 1000); 2890 eProcessStatus = oProcess.status; 2891 except: 2892 fRc = reporter.errorXcpt('Waiting for blocking process #%d failed:' % (i,)); 2893 else: 2894 if eProcessStatus != vboxcon.ProcessStatus_Started: 2895 fRc = reporter.error('Waiting for blocking processes #%d resulted in status %d, expected %d (wr=%d)' 2896 % (i, eProcessStatus, vboxcon.ProcessStatus_Started, eWaitResult)); 2887 2897 aoProcs.append(oCurProc); 2888 2898 except: 2889 fRc = reporter.errorXcpt('Creating non-staleblocking process #%d failed:' % (i,));2899 fRc = reporter.errorXcpt('Creating blocking process #%d failed:' % (i,)); 2890 2900 break; 2891 2901
Note:
See TracChangeset
for help on using the changeset viewer.