VirtualBox

Changeset 103219 in vbox for trunk/src


Ignore:
Timestamp:
Feb 6, 2024 8:57:43 AM (11 months ago)
Author:
vboxsync
Message:

Validation Kit/tdAddGuestCtrl.py: Fixed session 0 checks. bugref:10586

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py

    r103215 r103219  
    27302730                if iExitCode >= 1000: # We report 1000 + <session ID> as exit code.
    27312731                    uSessionId = iExitCode - 1000;
    2732                     if uSessionId == 0:
     2732                    if uSessionId >= 1:
    27332733                        reporter.log('Guest processes start in session %d, good' % (uSessionId));
    27342734                    else:
    2735                         reporter.error('Guest processes start in session %d, expected session 0' % (uSessionId));
     2735                        reporter.error('Guest processes start in session 0, expected session >= 1');
    27362736                else:
    27372737                    reporter.error('Guest Control Helper returned error %d (exit code)' % (iExitCode));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette