Changeset 93664 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Feb 8, 2022 6:41:40 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r93663 r93664 199 199 # therefore return WaitFlagNotSupported. 200 200 # 201 if waitResult not in (vboxcon.GuestSessionWaitResult_Start, vboxcon.GuestSessionWaitResult_WaitFlagNotSupported): 201 if waitResult not in (vboxcon.GuestSessionWaitResult_Start, \ 202 vboxcon.GuestSessionWaitResult_WaitFlagNotSupported): 202 203 # Just log, don't assume an error here (will be done in the main loop then). 203 reporter.maybeErr(fIsError, 'Session did not start successfully, returned wait result: %d' % (waitResult,)); 204 reporter.maybeErr(fIsError, 'Session did not start successfully, returned wait result: %d' \ 205 % (waitResult,)); 204 206 return (False, None); 205 207 reporter.log('Session "%s" successfully started' % (sName,));
Note:
See TracChangeset
for help on using the changeset viewer.