- Timestamp:
- Feb 7, 2024 10:59:38 AM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161524
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r103231 r103238 2573 2573 self.processExecute(oGuestSession, self.sGstCtlHelperExe, asArgs2, sCwd, \ 2574 2574 asEnv, aeWaitFor, timeoutMS); 2575 if eExitStatus != vboxcon. TerminatedNormally:2575 if eExitStatus != vboxcon.ProcessStatus_TerminatedNormally: 2576 2576 reporter.log('VBoxGuestControlHelper failed to run; got exit status %d' % (eExitStatus,)); 2577 2577 fRc = False; 2578 2578 except: 2579 reporter.errorXcpt();2579 fRc = reporter.errorXcpt(); 2580 2580 2581 2581 return (fRc, eExitStatus, iExitCode, cbStdOut, cbStdErr, sBuf); … … 2719 2719 fRc = True; 2720 2720 2721 if self.oTstDrv.fpApiVer >= 7.1 \ 2721 # Note: Starting with r161502 this should be fixed. 2722 # Session 0 separation started with Windows Vista, so skip everything older. 2723 if self.oTstDrv.uRevision >= 161502 \ 2722 2724 and oTestVm.isWindows() \ 2723 and oTestVm.sKind not in ('WindowsNT 4', 'Windows2000',):2725 and oTestVm.sKind not in ('WindowsNT3x', 'WindowsNT4', 'Windows2000', 'WindowsXP'): 2724 2726 reporter.testStart('Windows guest processes in session >= 1'); 2725 2727 # Test in which Windows session Guest Control processes are being started. … … 2728 2730 self.executeGstCtlHelper(oTxsSession, oGuestSession, [ "show", "win-session-id" ]); 2729 2731 if fRc \ 2730 and eExitStatus == vboxcon. TerminatedNormally:2732 and eExitStatus == vboxcon.ProcessStatus_TerminatedNormally: 2731 2733 if iExitCode >= 1000: # We report 1000 + <session ID> as exit code. 2732 2734 uSessionId = iExitCode - 1000;
Note:
See TracChangeset
for help on using the changeset viewer.